扫码一下
查看教程更方便
concat() 方法将一个字符串附加到另一个字符串的末尾。 该方法返回一个字符串,该字符串的的末尾为传递给该方法的字符串对象的值。
public String concat(String s)
s - 连接到此字符串末尾的字符串。
返回连接后的新字符串
public class Main { 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