Java.lang.Double.parseDouble() 方法

声明

以下是 java.lang.Double.parseDouble() 方法的声明。

public static double parseDouble(String s) throws NumberFormatException

参数

s − 这是要解析的字符串。


返回值

此方法返回字符串参数表示的双精度值。


异常

NumberFormatException − 如果字符串不包含可解析的双精度。


示例

下面的例子展示了 java.lang.Double.parseDouble() 方法的使用。

package com.tutorialspoint;

import java.lang.*;

public class DoubleDemo {

   public static void main(String[] args) {

      Double d = new Double("6.35");
   
      // returns the double value represented by the string argument
      String str = "50";
      double retval = d.parseDouble(str);
      System.out.println("Value = " + retval);
   }
}  

让我们编译并运行上面的程序,这将产生下面的结果 −

Value = 50.0