高效的可变长字符串拼接工具(极快)
- StringBuilder比StringBuffer效率高
- StringBuffer线程安全
- 建议:只用StringBuffe
点击查看代码
public static void main(String[] args){
StringBuffer str =new StringBuffer();
for(int i =0;i<10000;i++){
str.append("abcd");
}
}