when will Double class throw NumberFormatException under any circumstances? code example
Example: numberformatexception
package com.devdaily.javasamples;
public class ConvertStringToNumber {
public static void main(String[] args) {
try {
// intentional error
String s = "FOOBAR";
int i = Integer.parseInt(s);
// this line of code will never be reached
System.out.println("int value = " + i);
}
catch (NumberFormatException nfe) {
nfe.printStackTrace();
}
}
}