Java String concat() 方法
描述
该方法将一个字符串附加到另一个字符串的末尾。该方法返回一个字符串,其值为传入方法的字符串附加到调用该方法的字符串的末尾。
语法
这是该方法的语法 –
public String concat(String s)
参数
这里是参数的详细信息 −
- s − 要连接到此字符串末尾的字符串。
返回值
- 此方法返回一个字符串,该字符串表示该对象的字符后跟字符串参数的字符的连接。
示例
public class Test {
public static void main(String args[]) {
String s = "Strings are immutable";
s = s.concat(" all the time");
System.out.println(s);
}
}
这将产生以下结果-
输出
Strings are immutable all the time