提示:您可在线编辑运行本教程的实例 - 运行实例,去试试!
将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); } }