Java中可以使用字符串的concat()方法或者使用"+"運算符來合并多個字符串。
使用concat()方法:
String str1 = "Hello";
String str2 = "World";
String result = str1.concat(str2);
System.out.println(result); // 輸出 "HelloWorld"
使用"+"運算符:
String str1 = "Hello";
String str2 = "World";
String result = str1 + str2;
System.out.println(result); // 輸出 "HelloWorld"
兩種方法的效果是一樣的,都可以將多個字符串合并成一個新的字符串。