您的位置:首页 > 产品设计 > UI/UE

String StringBuffer StringBuilder

2015-07-09 23:52 489 查看
The String class represents character string. All string literals in java program are implemented as instances of this class. 

Strings are constant, their values cannot be changed after they are created. Because String objects are immutable, they can be shared.

String concatenation is implemented through the StringBuilder and StringBuffer class and its append method.

Unless otherwise noted, passing a null argument to a constructor or method in this class will cause a NullPointerException to be thrown.

StringBuffer class is a thread-save, mutable sequence of characters. A string buffer is like a string, but can be modified. String buffers are safe to use by multiple threads. The methods are
synchronized where necessary so that all the operations on any particular instance behave as if they occur in some serial order that is  consistent with the order of the method calls made by each of the individual threads involved.

StringBuilder
is also a mutable sequence of characters. This class provides an API compatible with StringBuffer, but with no guarantee of synchronization. This class is designed for use as a drop-in replacement for StringBuffer in places where the string buffer was being
used by a single thread (as is generally the case). Where possible, it is recommended that this class be used in preference to StringBuffer as it will be faster under most implementations, as it supports all of the same operations but it is faster, as it performs
no synchronization.
内容来自用户分享和网络整理,不保证内容的准确性,如有侵权内容,可联系管理员处理 点击这里给我发消息