[Java] String & StringBuffer & StringBuilder
时间:2010-09-13 来源:web_surf
- String
It is immutable.
- StringBuffer
It is mutable, and it is synchronized, that means the methods have synchronized modifier. - StringBuilder
It it mutable as well, but it is not synchronized, that means the methods have no synchronized modifier. - xxx
相关阅读 更多 +