欢迎来到天天文库
浏览记录
ID:1484881
大小:73.00 KB
页数:4页
时间:2017-11-11
《java的字符串拼接》由会员上传分享,免费在线阅读,更多相关内容在教育资源-天天文库。
1、在JAVA中拼接两个字符串的最简便的方式就是使用操作符”+”了。如果你用”+”来连接固定长度的字符串,可能性能上会稍受影响,但是如果你是在循环中来”+”多个串的话,性能将指数倍的下降。假设有一个字符串,我们将对这个字符串做大量循环拼接操作,使用”+”的话将得到最低的性能。但是究竟这个性能有多差?如果我们同时也把StringBuffer,StringBuilder或String.concat()放入性能测试中,结果又会如何呢?本文将会就这些问题给出一个答案!我们将使用Per4j来计算性能,因为这个工具可以给我们一个完整的性能指标集合,比如最小,最大耗时,
2、统计时间段的标准偏差等。在测试代码中,为了得到一个准确的标准偏差值,我们将执行20个拼接”*”50,000次的测试。下面是我们将使用到的拼接字符串的方法:·ConcatenationOperator(+)·Stringconcatmethod–concat(Stringstr)·StringBufferappendmethod–append(Stringstr)·StringBuilderappendmethod–append(Stringstr)最后,我们将看看字节码,来研究这些方法到底是如何执行的。现在,让我们先开始来创建我扪的类。注意为了计算每个
3、循环的性能,代码中的每段测试代码都需要用Per4J库进行封装。首先我们先定义迭代次数1.privatestaticfinalintOUTER_ITERATION=20;2.privatestaticfinalintINNER_ITERATION=50000;接下来,我们将使用上述4个方法来实现我们的测试代码。1.StringaddTestStr="";2.3.StringconcatTestStr="";4.5.StringBufferconcatTestSb=null;6.7.StringBuilderconcatTestSbu=null;8.9.f
4、or(intouterIndex=0;outerIndex<=OUTER_ITERATION;outerIndex++){10.11.StopWatchstopWatch=newLoggingStopWatch("StringAddConcat");12.13.addTestStr="";14.15.for(intinnerIndex=0;innerIndex<=INNER_ITERATION;innerIndex++)16.17.addTestStr+="*";18.19.stopWatch.stop();20.21.}1.2.for(intoute
5、rIndex=0;outerIndex<=OUTER_ITERATION;outerIndex++){3.4.StopWatchstopWatch=newLoggingStopWatch("StringConcat");5.6.concatTestStr="";7.8.for(intinnerIndex=0;innerIndex<=INNER_ITERATION;innerIndex++)9.10.concatTestStr.concat("*");11.12.stopWatch.stop();13.14.}15.16.for(intouterInde
6、x=0;outerIndex<=OUTER_ITERATION;outerIndex++){17.18.StopWatchstopWatch=newLoggingStopWatch("StringBufferConcat");19.20.concatTestSb=newStringBuffer();21.22.for(intinnerIndex=0;innerIndex<=INNER_ITERATION;innerIndex++)23.24.concatTestSb.append("*");25.26.stopWatch.stop();27.28.}2
7、9.30.for(intouterIndex=0;outerIndex<=OUTER_ITERATION;outerIndex++){31.32.StopWatchstopWatch=newLoggingStopWatch("StringBuilderConcat");33.34.concatTestSbu=newStringBuilder();35.36.for(intinnerIndex=0;innerIndex<=INNER_ITERATION;innerIndex++)37.38.concatTestSbu.append("*");39.40.
8、stopWatch.stop();41.42.}接下来通过运行程序来生成性能指标。我的运行环境
此文档下载收益归作者所有