使用 Double 类的 toString() 方法将 Double 转换为 String 的 Java 程序
我们首先声明一个 Double −
Double ob = new Double(99.12);
使用 toString() 方法将 Double 转换为 String。
String res = ob.toString();
以下是完整示例。
示例
public class Demo { public static void main(String args[]) { Double ob = new Double(99.12); String res = ob.toString(); System.out.println(res); } }
输出
99.12
广告