共计 494 个字符,预计需要花费 2 分钟才能阅读完成。
在 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
方法都会将两个字符串连接起来,并返回一个新的字符串对象。原始的字符串对象保持不变。
丸趣 TV 网 – 提供最优质的资源集合!
正文完