StringBuffer 类中的 append() 方法将指定的 String 添加到当前 String buffer 的内容中。使用此方法,您可以将单个字符附加到 Java 中的字符串或字符数组。示例public class Test { public static void main(String args[]) { StringBuffer sb = new StringBuffer("Hi hello how are yo"); sb.append("u"); System.out.println(sb); } }输出Hi hello how are you