Java字符串拼接的方法有多种。以下是常用的几种方法:
使用加号(+)运算符:
String str1 = "Hello";
String str2 = "World";
String result = str1 + " " + str2;
使用String类的concat()方法:
String str1 = "Hello";
String str2 = "World";
String result = str1.concat(" ").concat(str2);
使用StringBuilder类:
StringBuilder sb = new StringBuilder();
sb.append("Hello");
sb.append(" ");
sb.append("World");
String result = sb.toString();
使用StringBuffer类(与StringBuilder类类似,但是线程安全):
StringBuffer sb = new StringBuffer();
sb.append("Hello");
sb.append(" ");
sb.append("World");
String result = sb.toString();
需要注意的是,字符串是不可变的,所以每次拼接都会创建一个新的字符串对象。因此,在大量拼接字符串的场景中,推荐使用StringBuilder或StringBuffer类,以提高性能。