append(String str): 将指定字符串添加到StringBuffer的末尾。
insert(int offset, String str): 在指定位置插入指定字符串。
delete(int start, int end): 删除指定范围内的字符。
replace(int start, int end, String str): 将指定范围内的字符替换为指定字符串。
reverse(): 反转StringBuffer中的字符顺序。
substring(int start): 返回从指定位置开始到末尾的子字符串。
substring(int start, int end): 返回指定范围内的子字符串。
length(): 返回StringBuffer对象的长度(即字符数)。
capacity(): 返回StringBuffer对象的当前容量。
setLength(int newLength): 设置StringBuffer对象的长度。
ensureCapacity(int minimumCapacity): 确保StringBuffer对象的容量至少等于指定的最小值。
toString(): 将StringBuffer对象转换为String类型。