Java中的双 parseDouble() 方法及示例
Java Double 类的parseDouble()方法是Java中的一个内置方法,它返回一个新的 double,该方法初始化为指定 String 表示的值,正如Double类的valueOf方法所做的那样。
句法:
public static double parseDouble(String s)
参数:它接受一个强制参数s ,它指定要解析的字符串。
返回类型:返回字符串参数表示的双精度值。
异常:该函数抛出两个异常,如下所述:
- NullPointerException – 当解析的字符串为空时
- NumberFormatException – 当解析的字符串不包含可解析的浮点数时
下面是上述方法的实现。
方案一:
// Java Code to implement
// parseDouble() method of Double class
class GFG {
// Driver method
public static void main(String[] args)
{
String str = "100";
// returns the double value
// represented by the string argument
double val = Double.parseDouble(str);
// prints the double value
System.out.println("Value = " + val);
}
}
输出:
Value = 100.0
程序 2:显示 NumberFormatException
// Java Code to implement
// parseDouble() method of Double class
class GFG {
// Driver method
public static void main(String[] args)
{
try {
String str = "";
// returns the double value
// represented by the string argument
double val = Double.parseDouble(str);
// prints the double value
System.out.println("Value = " + val);
}
catch (Exception e) {
System.out.println("Exception: " + e);
}
}
}
输出:
Exception: java.lang.NumberFormatException: empty String
程序 3:显示 NullPointerException
// Java Code to implement
// parseDouble() method of Double class
class GFG {
// Driver method
public static void main(String[] args)
{
try {
String str = null;
// returns the double value
// represented by the string argument
double val = Double.parseDouble(str);
// prints the double value
System.out.println("Value = " + val);
}
catch (Exception e) {
System.out.println("Exception: " + e);
}
}
}
输出:
Exception: java.lang.NullPointerException
参考: https: Java Java.lang.String)