Java字符串拼接效率測(cè)試過(guò)程解析
測(cè)試代碼:
public class StringJoinTest { public static void main(String[] args) { int count = 10000; long begin, end, time; begin = System.currentTimeMillis(); testString(count); end = System.currentTimeMillis(); time = end - begin; System.out.println('拼接' + count + '次,String消耗時(shí)間:' + time + '毫秒'); begin = System.currentTimeMillis(); testStringBuffer(count); end = System.currentTimeMillis(); time = end - begin; System.out.println('拼接' + count + '次,StringBuffer消耗時(shí)間:' + time + '毫秒'); begin = System.currentTimeMillis(); testStringBuilder(count); end = System.currentTimeMillis(); time = end - begin; System.out.println('拼接' + count + '次,StringBuilder消耗時(shí)間:' + time + '毫秒'); } private static String testStringBuilder(int count) { StringBuilder tem = new StringBuilder(); for (int i = 0; i < count; i++) { tem.append('hello world!'); } return tem.toString(); } private static String testStringBuffer(int count) { StringBuffer tem = new StringBuffer(); for (int i = 0; i < count; i++) { tem.append('hello world!'); } return tem.toString(); } private static String testString(int count) { String tem = ''; for (int i = 0; i < count; i++) { tem += 'hello world!'; } return tem; }}
測(cè)試結(jié)果:
結(jié)論:
在少量字符串拼接時(shí)還看不出差別,但隨著數(shù)量的增加,String+拼接效率顯著降低。在達(dá)到100萬(wàn)次,我本機(jī)電腦已經(jīng)無(wú)法執(zhí)行String+拼接了,StringBuilder效率略高于StringBuffer。所以在開(kāi)發(fā)過(guò)程中通常情況下推薦使用StringBuilder。
StringBuffer和StringBuilder的區(qū)別在于StringBuffer是線程安全的。
以上就是本文的全部?jī)?nèi)容,希望對(duì)大家的學(xué)習(xí)有所幫助,也希望大家多多支持好吧啦網(wǎng)。
相關(guān)文章:
1. ASP中if語(yǔ)句、select 、while循環(huán)的使用方法2. XML入門(mén)的常見(jiàn)問(wèn)題(四)3. CSS3使用過(guò)度動(dòng)畫(huà)和緩動(dòng)效果案例講解4. XML解析錯(cuò)誤:未組織好 的解決辦法5. 三個(gè)不常見(jiàn)的 HTML5 實(shí)用新特性簡(jiǎn)介6. 簡(jiǎn)單了解XML 樹(shù)結(jié)構(gòu)7. XHTML 1.0:標(biāo)記新的開(kāi)端8. ASP基礎(chǔ)知識(shí)Command對(duì)象講解9. 概述IE和SQL2k開(kāi)發(fā)一個(gè)XML聊天程序10. 怎樣才能用js生成xmldom對(duì)象,并且在firefox中也實(shí)現(xiàn)xml數(shù)據(jù)島?
