Java concat() 方法
在 Java 中,concat() 方法用于连接两个字符串。
该方法属于 String 类,使用它可以将一个字符串连接到另一个字符串的末尾。
需要注意的是,concat() 方法不会修改原字符串,而是返回一个新的字符串。
语法
public String concat(String s)
参数
s -- 要连接的字符串。
返回值
返回连接后的新字符串。
实例
实例
public class Test {
public static void main(String args[]) {
String s = "菜鸟教程:";
s = s.concat("www.runoob.com");
System.out.println(s);
}
}
public static void main(String args[]) {
String s = "菜鸟教程:";
s = s.concat("www.runoob.com");
System.out.println(s);
}
}
以上程序执行结果为:
菜鸟教程:www.runoob.com
注意事项
- 如果传递给
concat()
方法的参数为null
,则会抛出NullPointerException
。 - 如果传递给
concat()
方法的参数为空字符串 (""
),则返回的字符串与调用concat()
方法的字符串相同。
实例
public class ConcatExample {
public static void main(String[] args) {
String str1 = "Hello";
// 连接空字符串
String result = str1.concat("");
// 打印结果
System.out.println(result); // 输出 "Hello"
}
}
public static void main(String[] args) {
String str1 = "Hello";
// 连接空字符串
String result = str1.concat("");
// 打印结果
System.out.println(result); // 输出 "Hello"
}
}
总结起来,concat() 方法是一个简单而有效的字符串连接方法,但需要注意避免传递 null 以防止异常。