在 Java 中更改 Java StringBuffer 对象中的单个字符
为了在 Java 中更改 StringBuffer 对象中的单个字符,我们使用 setCharAt() 方法。setCharAt() 方法将指定为参数的索引处的字符设置为另一个字符,其值作为 setCharAt() 方法的参数传递。该方法设置一个新的字符序列,唯一的更改是字符作为参数传递在指定索引处。
声明 - java.lang.StringBuffer.setCharAt() 方法声明如下 -
public void setCharAt(int index, char ch)
如果索引大于 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
广告