Can some one please explain the difference between Double.parseDouble and Double.toString and when I might use either or both?
Java commands
|
Newbie Member
|
|
| 3Jun2012,18:21 | #1 |
|
Hi there ... my very first forum post
Can some one please explain the difference between Double.parseDouble and Double.toString and when I might use either or both?
|
|
Light Poster
|
|
| 21Aug2012,16:40 | #2 |
|
As the functions names explain:
parseDouble passes a string as parameter and returns a double from it. For example if the string is "123" it returns a double 123. So simply take a numeric string and return it as double. But toString returns a string from a double: Oracle docs have the info for that: Double Class |
