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?
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