String Buffer: Difference between revisions

Content deleted Content added
Tomtheeditor (talk | contribs)
Undid revision 552906998 by 120.56.200.181 (talk)
Line 26:
The '''{{Javadoc:SE|java/lang|StringBuilder}}''' class, introduced in [[Java Platform, Standard Edition|J2SE]] 5.0, differs from <code>StringBuffer</code> in that it is [[Synchronization (computer science)|unsynchronized]]. When only a single [[Thread (computer science)|thread]] at a time will access the object, using a <code>StringBuilder</code> processes more efficiently than using a <code>StringBuffer</code>.
 
<code>StringBuffer</code> and <code>StringBuilder</code> are includeincluded in the {{Javadoc:SE|package=java.lang|java/lang}} package.
 
== In .NET ==