Java中的String类提供了多种方法用于字符串拼接,以下是常用的方法:
- 使用"+"操作符进行字符串拼接:
String str1 = "Hello"; String str2 = "World"; String result = str1 + " " + str2; System.out.println(result); // 输出:Hello World
- 使用concat()方法进行字符串拼接:
String str1 = "Hello"; String str2 = "World"; String result = str1.concat(" ").concat(str2); System.out.println(result); // 输出:Hello World
- 使用StringBuilder类进行字符串拼接:
StringBuilder sb = new StringBuilder(); sb.append("Hello"); sb.append(" "); sb.append("World"); String result = sb.toString(); System.out.println(result); // 输出:Hello World
- 使用StringBuffer类进行字符串拼接(线程安全):
StringBuffer sb = new StringBuffer(); sb.append("Hello"); sb.append(" "); sb.append("World"); String result = sb.toString(); System.out.println(result); // 输出:Hello World
以上是一些常用的字符串拼接方法,根据需要选择适合的方法进行字符串拼接。其中,使用StringBuilder和StringBuffer类进行字符串拼接的效率更高,特别是在需要大量字符串拼接时。