Double f=3.1415924
String result = String.format("%.2f", f);
System.out.println(result);
String.format实际上就是一个格式化输出。
Double f=3.1415924
String result = String.format("%.2f", f);
System.out.println(result);
String.format实际上就是一个格式化输出。
转载于:https://www.cnblogs.com/cbread/archive/2013/04/24/3039464.html