在Java中更改Java StringBuffer对象中的单个字符

为了在Java中更改StringBuffer对象中的单个字符,我们使用setCharAt()方法。该setCharAt()方法将在指定为参数的索引处的字符设置为另一个字符,该字符的值已通过该setCharAt()方法的参数传递。该方法设置一个新的字符序列,唯一的变化是在指定索引处作为参数传递的字符。

声明-java.lang.StringBuffer.setCharAt()方法声明如下-

public void setCharAt(int index, char ch)

如果index大于StringBuffer对象的长度或为负,则生成IndexOutOfBoundsException。

让我们看一个程序来更改StringBuffer对象中的单个字符。

示例

public class Example {
   public static void main(String[] args) {
      StringBuffer sb = new StringBuffer("Hello World");
      sb.setCharAt(7,'a'); // setting character to a at the 7th index
      System.out.println(sb);
   }
}

输出结果

Hello Warld