我们知道输出格式化数字可以使用printf()和format()方法。String类使用静态方法format()返回一个String对象而不是PrintStream对象。
String类的静态方法format()能用来创建可复用的格式化字符串,而不仅仅是用于一次打印输出。如下所示:
System.out.printf( "The value of the float variable is " +
"%f, while the value of the integer " +
"variable is %d, and the string " +
"is %s" , floatVar, intVar, stringVar);
|
你也可以这样写
String fs;
fs = String.format(
"The value of the float variable is "
+
"%f, while the value of the integer "
+
"variable is %d, and the string "
+
"is %s"
, floatVar, intVar, stringVar);
System.out.println(fs);
2015职称计算机考试书PowerPoint2007中 .. 定价:¥45 优惠价:¥42 更多书籍 | |
2015年全国职称计算机考试教材(2007模 .. 定价:¥225 优惠价:¥213 更多书籍 |