Java String concat()方法将一个String
附加到另一个String
的末尾。 该方法返回一个连接后的String
值。
语法
以下是此方法的语法 -
public String concat(String s)
参数
s
- 连接到此String末尾的String。
返回值
此方法返回一个字符串,该字符串表示此对象的字符串联,后跟字符串参数的字符。
示例
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