在 Java 中连接字符串的最佳方法是 concat() 方法。此方法将一个 String 附加到另一个 String 的末尾。该方法返回一个 String,其值为传递到该方法中的 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