阅读量:0
在Java中,format()
方法通常与字符串格式化相关。它允许你根据指定的格式字符串来格式化一个或多个值。这对于生成整齐、易读的输出非常有用。
以下是如何在Java中使用format()
方法的一些示例:
- 使用
System.out.printf()
进行格式化输出:
public class FormatExample { public static void main(String[] args) { int num = 42; double pi = 3.14159; System.out.printf("整数: %d, 浮点数: %.2f%n", num, pi); } }
输出结果:
整数: 42, 浮点数: 3.14
- 使用
String.format()
创建格式化字符串:
public class FormatExample { public static void main(String[] args) { int num = 42; double pi = 3.14159; String formattedStr = String.format("整数: %d, 浮点数: %.2f", num, pi); System.out.println(formattedStr); } }
输出结果:
整数: 42, 浮点数: 3.14
在这些示例中,我们使用了不同的格式说明符(如%d
和%.2f
)来指定整数和浮点数的格式。%d
表示一个十进制整数,%.2f
表示一个保留两位小数的浮点数。%n
表示换行符。
你可以在这里找到更多关于格式说明符的信息。