String.format()
是 Java 中用于格式化字符串的一個非常有用的方法。它允許你使用占位符 {}
來表示要插入的值,然后使用指定的格式選項來格式化這些值。以下是如何使用 String.format()
進行字符串拼接的示例:
public class StringFormatExample {
public static void main(String[] args) {
String name = "John";
int age = 30;
double height = 175.5;
String formattedString = String.format("姓名:%s,年齡:%d,身高:%.2f 米", name, age, height);
System.out.println(formattedString);
}
}
在這個例子中,我們使用了三個占位符 {}
分別表示姓名、年齡和身高。%s
用于字符串,%d
用于整數,%.2f
用于保留兩位小數的浮點數。String.format()
會將這些占位符替換為提供的參數值,并按照指定的格式進行格式化。
輸出結果:
姓名:John,年齡:30,身高:175.50 米
通過這種方式,你可以輕松地使用 String.format()
進行字符串拼接和格式化。