字符串生成器
作用:创建成功的字符串对象,其长度是固定的,内容不能改变和编译。虽然使用+可以达到附加新字符串的目的,但是这样就会产生新的string实例,如果重复对字符串进行修改,将极大增加系统的开销。使用字符串生成器的目的就是提高改变字符串的效率。
添加 append()
StringBulider bf= new StringBulider("hello") bf.append("i") System.out.println(bf.toString());
插入 insert()
StringBulider bf= new StringBulider("hello") bf.insert(5,"i") System.out.println(bf.toString());
删除 delete()
StringBulider bf= new StringBulider("hello") bf.delete(1,3) System.out.println(bf.toString());