摘要: StringBuilder没有提供clear或empty方法。清空有3种方法:1)使用delete2)新生成一个,旧的由系统自动回收3)使用setLength将三种方法循环1000万次,代码:public class sbbm { static String a; static long... 阅读全文
posted @ 2014-11-18 14:14 亲福 阅读(3349) 评论(0) 推荐(1)
摘要: 使用Concatenation Operator (+)String concat method – concat(String str)StringBuffer append method – append(String str)StringBuilder append method – appe... 阅读全文
posted @ 2014-11-18 14:11 亲福 阅读(267) 评论(0) 推荐(0)