在 Java 中将单个字符附加到字符串或字符数组?

java 8object oriented programmingprogramming

StringBuffer 类中的 append() 方法将指定的字符串添加到当前字符串缓冲区的内容中。使用此方法,您可以在 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

相关文章