I want to convert string to a double data type. I do not know if I should use parseDouble or valueOf methods? What is deference between these to methods?
|
|
To avoid the overhead of creating a new Double object instance, you should normally use |
|||||||||||
|
|
So , for eg.
Morover,
|
||||
|
|
|
Documentation for |
|||
|
|
|
They both convert a String to a double value but wherease the parseDouble() method returns the primitive double value, the valueOf() method further converts the primitive double to a Double wrapper class object which contains the primitive double value. The conversion from String to primitive double may throw NFE(NumberFormatException) if the value in String is not convertible into a primitive double. |
|||
|
|
|
If you want to convert string to double data type then most choose parseDouble() method. See the example code:
You will get the value in double. See the StringToDouble tutorial at tutorialData. |
|||||||
|