在Java中,字符串拼接有多種方式,下面是一些常用的方法:
String str1 = "Hello, ";
String str2 = "world!";
String result = str1 + str2;
System.out.println(result); // 輸出:Hello, world!
String str1 = "Hello, ";
String str2 = "world!";
String result = str1.concat(str2);
System.out.println(result); // 輸出:Hello, world!
StringBuilder sb = new StringBuilder();
sb.append("Hello, ");
sb.append("world!");
String result = sb.toString();
System.out.println(result); // 輸出:Hello, world!
StringBuffer sb = new StringBuffer();
sb.append("Hello, ");
sb.append("world!");
String result = sb.toString();
System.out.println(result); // 輸出:Hello, world!
這些都是常用的字符串拼接方法,選擇合適的方法取決于具體的需求和場景。StringBuilder和StringBuffer類通常用于大量拼接操作,因為它們是可變的,不會產生大量的臨時對象。而“+”運算符和concat()方法適用于少量的拼接操作。