在Java中,可以使用concat
方法將兩個字符串連接起來。concat
方法是String
類的一個方法,用于將當前字符串與另一個指定的字符串連接起來,并返回一個新的字符串對象。
使用concat
方法有兩種方式:
concat
方法。String str1 = "Hello";
String str2 = "World";
String result = str1.concat(str2);
System.out.println(result); // 輸出:HelloWorld
String
類的靜態方法concat
,將要連接的字符串作為參數傳遞給該方法。String str1 = "Hello";
String str2 = "World";
String result = String.concat(str1, str2);
System.out.println(result); // 輸出:HelloWorld
無論使用哪種方式,concat
方法都會將兩個字符串連接起來,并返回一個新的字符串對象。原始的字符串對象保持不變。