示例1:使用parseDouble()将字符串转换为double的Java程序
class Main {
public static void main(String[] args) {
// create string variables
String str1 = "23";
String str2 = "456.6";
// convert string to double
// using parseDouble()
double num1 = Double.parseDouble(str1);
double num2 = Double.parseDouble(str2);
// print double values
System.out.println(num1); // 23.0
System.out.println(num2); // 456.6
}
}
在上面的示例中,我们使用Double类的parseDouble()方法将字符串变量转换为double。
在这里,Double是Java中的包装器类。要了解更多信息,请访问Java Wrapper类。
注意 : 字符串变量应代表数字值。否则,编译器将引发异常。例如,
class Main {
public static void main(String[] args) {
// create a string variable
String str1 = "Programiz";
// convert string to double
// using parseDouble()
double num1 = Double.parseDouble(str1);
// print double values
System.out.println(num1); // throws NumberFormatException
}
}
示例2:使用valueOf()将字符串转换为双精度的Java程序
我们还可以使用valueOf()方法将字符串变量转换为双精度型。例如,
class Main {
public static void main(String[] args) {
// create string variables
String str1 = "6143";
String str2 = "21312";
// convert String to double
// using valueOf()
double num1 = Double.valueOf(str1);
double num2 = Double.valueOf(str2);
// print double values
System.out.println(num1); // 6143.0
System.out.println(num2); // 21312.0
}
}
在上面的示例中, Double
类的valueOf()
方法将字符串值转换为double
。
在这里, valueOf()
方法实际上返回Double
类的对象。但是,对象会自动转换为原始类型。在Java中,这称为拆箱。要了解更多信息,请访问Java自动装箱和拆箱。
那是,
// valueOf() returns object of Double
// object is converted into double
double num1 = Double obj = Double.valueOf(str1);
示例3:Java程序将包含逗号的字符串转换为double
class Main {
public static void main(String[] args) {
// create string variables
String str = "614,33";
// replace the , with .
str = str.replace(",", ".");
// convert String to double
// using valueOf()
double value = Double.parseDouble(str);
// print double value
System.out.println(value); // 614.33
}
}
在上面的例子中,我们创建了一个名为海峡字符串 。注意这一行,
str = str.replace(",", ".");
在这里, replace()
方法用点字符替换字符串的逗号 。要了解有关替换字符的更多信息,请访问Java String replace()。
然后,我们使用parseDouble()
方法将字符串转换为double
。