在Java中,可以使用加号运算符(+)将多个字符串连接起来。例如:
String str1 = "Hello";
String str2 = "World";
String result = str1 + " " + str2;
System.out.println(result); // 输出:Hello World
另一种常用的方法是使用StringBuilder类。StringBuilder类提供了append方法,可以用于将多个字符串连接起来。例如:
StringBuilder sb = new StringBuilder();
sb.append("Hello");
sb.append(" ");
sb.append("World");
String result = sb.toString();
System.out.println(result); // 输出:Hello World
使用StringBuilder类的优点是在连接大量字符串时,性能比使用加号运算符更好,因为StringBuilder类内部使用了可变长度的缓冲区。