很簡單的一個例子:
不要使用
String ts=new String(
這樣會生成多余的對象
最好使用
String ts=
//add by chris
很多文章都建議使用stringbuffer來代替string
為了理解深入點
String s
String s
String s
另外一種方法
StringBuffer s = new StringBuffer();
s
s
s
String s
在上面這個例子裡面
這個在這裡就不討論了
//end of add
其實在jvm裡面
而且不要在循環或者多次調用的地方新建一個對象
From:http://tw.wingwit.com/Article/program/Java/hx/201311/26675.html