aspose file tools
The moose likes Programmer Certification (SCJP/OCPJP) and the fly likes valueOf() vs parseXXX() Big Moose Saloon
  Search | Java FAQ | Recent Topics
Register / Login


JavaRanch » Java Forums » Certification » Programmer Certification (SCJP/OCPJP)
Reply Bookmark "valueOf() vs parseXXX()" Watch "valueOf() vs parseXXX()" New topic
Author

valueOf() vs parseXXX()

Chaitanya Jadhav
Ranch Hand

Joined: Mar 13, 2009
Posts: 41
According to K & B
The difference between the two methods is

* parseXxx() returns the named primitive.
* valueOf() returns a newly created wrapped object of the type that invoked
the method.

But both method return primitive as well as Object.??
then what is difference between them?




SCJP 1.5 80%
Ankit Garg
Saloon Keeper

Joined: Aug 03, 2008
Posts: 9191
    
    2

Chaitanya the book is right. valueOf returns a wrapper class object. This code



works only because of autoboxing. valueOf here returns an Integer object which is unboxed to int. To test this, try this code



Same is the case with parseInt here



SCJP 6 | SCWCD 5 | Javaranch SCJP FAQ | SCWCD Links
Chaitanya Jadhav
Ranch Hand

Joined: Mar 13, 2009
Posts: 41
Ankit...

nice example .
thanks..
now i understood..
 
I agree. Here's the link: http://ej-technologies/jprofiler - if it wasn't for jprofiler, we would need to run our stuff on 16 servers instead of 3.
 
subject: valueOf() vs parseXXX()
 
Similar Threads
parseXxx and valueOf
Doubt with String Methods
parseXXX vs valueOf In Primitive Type Wrapper Classes
parseXxx() and valueOf()
difference between parsexxx() and valueOf()