标签:使用 运行 模式 直接 str static string类 3.3 view
数字格式化
程序可以直接使用String类调用format方法对数字进行格式化。
format方法中的“格式化模式”是一个用双引号括起的字符序列(字符串),该字符序列的字符由格式符和普通字符所构成。代码展示如下所示:
public class Test05 { public static void main(String[] args) { // TODO Auto-generated method stub String s1 = String.format("%.2f", 3.1415926); System.out.println(s1); String s2 = String.format("%d元%3.3f公斤%d台", 888, 999.7766, 123); System.out.println(s2); } }
运行结果如下所示:
标签:使用 运行 模式 直接 str static string类 3.3 view
原文地址:https://www.cnblogs.com/liaoxiaolao/p/9425068.html