String 类的 concat() 方法将一个字符串附加到另一个字符串的末尾。该方法返回一个字符串,其值为传递到该方法中的字符串,附加到用于调用此方法的字符串的末尾。示例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此 String 类的 replace() 方法返回一个新字符串,该字符串是通过替换 oldChar 在 ... 阅读更多