集册 Java实例教程 将Double对象转换为String对象

将Double对象转换为String对象

欢马劈雪     最近更新时间:2020-01-02 10:19:05

540
提示:您可在线编辑运行本教程的实例 - 运行实例,去试试!
将Double对象转换为String对象

 

public class Main {
/**来自 
 时 代 J a v a**/

 

  public static void main(String[] args) {

    Double dObj = new Double(10.25);

   

    String str = dObj.toString();

    System.out.println("Double converted to String as " + str);

  }

}