concat()
方法concat()是Java中的String方法,用于将给定的字符串连接(添加)到字符串。它返回一个串联的字符串。
语法:
String str_object.concat(String str);
这里,
str是要添加的String对象。
str_object是必须在其中添加/连接str的主要字符串。
方法在str_object的末尾返回一个串联的字符串。
示例
Input: str1 = "Hello" str2 = "world!" Function call: str1.concat(str2); Output: "Helloworld!"
Java代码使用String.concat()方法连接字符串
public class Main { public static void main(String[] args) { String str1 = "Hello"; String str2 = "world!"; //将str2添加到str1- String str3 = str1.concat(str2); //打印值 System.out.println("str1 = " + str1); System.out.println("str2 = " + str2); System.out.println("str3 = " + str3); } }
输出结果
str1 = Hello str2 = world! str3 = Helloworld!