Java

Collapse
X
 
  • Time
  • Show
Clear All
new posts
  • harmansodhi03
    New Member
    • Aug 2007
    • 18

    Java

    What is following statement doing

    String num1=String.Val ueOf(N1)
  • r035198x
    MVP
    • Sep 2006
    • 13225

    #2
    Originally posted by harmansodhi03
    What is following statement doing

    String num1=String.Val ueOf(N1)
    There's no ValueOf method in the standard Java String class, there is a valueOf method instead. If that's what you intended then open the API specs page for the String class and see what the method is specified to do.

    Comment

    Working...