在Java中,可以使用加號(+)運算符來拼接兩個字符串。例如:
String str1 = "Hello";
String str2 = "World";
String result = str1 + " " + str2;
System.out.println(result); // 輸出:Hello World
另外,還可以使用String類的concat()方法來拼接字符串。例如:
String str1 = "Hello";
String str2 = "World";
String result = str1.concat(" ").concat(str2);
System.out.println(result); // 輸出:Hello World