Java中的String類提供了兩種連接字符串的方法:concat()函數(shù)和“+”操作符。它們的區(qū)別在于:
String str1 = "Hello ";
String str2 = "World";
String result = str1.concat(str2);
System.out.println(result); // 輸出:Hello World
System.out.println(str1); // 輸出:Hello
String str1 = "Hello ";
String str2 = "World";
String result = str1 + str2;
System.out.println(result); // 輸出:Hello World
System.out.println(str1); // 輸出:Hello
總的來說,使用“+”操作符更加簡潔和直觀,而使用concat()函數(shù)更加靈活,可以在任意位置插入字符串。選擇哪種方法取決于個人偏好和具體的需求。