setCharAt ()方法 在java.lang包中可用。 setCharAt () method is used to sets the given character at the given position and pos argument must be equal to or greater than 0 and less than the length. setCharAt ()方法 用于在给定位置设置给定字符,pos参数必须等于或大于0且小于长度
setCharAt() 该方法是StringBuffer中的方法,主要作用是将字符串中指定的位置的字符替换成目标字符,setCharAt(int index,char ch)index就是取代的位置 索引从0开始,ch是你要替换为的字符串。