首页 诗词 字典 板报 句子 名言 友答 励志 学校 网站地图
当前位置: 首页 > 教程频道 > 开发语言 > 编程 >

StringBuffer 与StringBuilder的运用场景

2012-11-05 
StringBuffer 与StringBuilder的应用场景首先翻译jdk规格说明中stringbuffer类描述的一段话:as ofrelease

StringBuffer 与StringBuilder的应用场景
    首先翻译jdk规格说明中stringbuffer类描述的一段话:
as of  release jdk 5, this class has been supplemented with an equivalent class designed for use by a single thread, {@link stringbuilder}.  the <tt>stringbuilder</tt> class should generally be used in preference to this one, as it supports all of the same operations but it is faster, as it performs no synchronization.

自从jdk5发布后,该类(stringbuffer)被补充了一个为在单线程中使用而设计的同等的类stringbuilder。stringbuilder通常要优先于该类被使用,因为它支持所有相同的操作,但速度更快,只是它没有执行任何同步。


结论:
对象a在单线程中使用,则选用stringbuilder a;
对象a被多线程使用,则选用stringbuffer a.
 

  1 楼 carafe 2011-08-12   一般都用StringBuilder,缩小作用域就可以了

热点排行