Java字符串拼接的方法有以下幾種:
String str1 = "Hello";
String str2 = "World";
String result = str1 + str2; // "HelloWorld"
String str1 = "Hello";
String str2 = "World";
String result = str1.concat(str2); // "HelloWorld"
StringBuilder sb = new StringBuilder();
sb.append("Hello");
sb.append("World");
String result = sb.toString(); // "HelloWorld"
// 或者使用鏈式調用
String result = new StringBuilder().append("Hello").append("World").toString(); // "HelloWorld"
需要注意的是,StringBuilder類是非線程安全的,而StringBuffer類是線程安全的,所以在單線程環境下,推薦使用StringBuilder類。