What is the main difference between StringBuffer and StringBuilder? Is there any performance issues when deciding on any one of these?
|
feedback
|
|
| |||||
feedback
|
|
Basically, StringBuffer methods are synchronized while StringBuilder are not. The operations are "almost" the same, but using synchronized methods in a single thread is overkill. That's pretty much about it. Quote
So it was made to substitute it. The same happened with Vector and ArrayList. | ||||
|
feedback
|
|
Here's a simple benchmark test:
A test run gives the numbers of | |||||
feedback
|
|
StringBuilder was introduced in Java 1.5 so it won't work with earlier JVMs. From the Javadocs: StringBuilder 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. | |||||
feedback
|
|
StringBuilder is not thread safe. String Buffer is. More info here. EDIT: As for performance , after hotspot kicks in , StringBuilder is the winner. However , for small iterations , the performance difference is negligible. | ||||
|
feedback
|
|
StringBuffer - Synchronized hence threadsafe - thread safe hence slow - StringBuilder - Introduced in java 5.0 - Asynchronous hence fast & efficient - User explicitly need to synchronized it, if he wants - You can replace it will StringBuilder without a any other change | |||
|
feedback
|
|
StringBuilder and StringBuffer almost the same,but the little difference is that StringBuffer is synchronized whereas the StringBuilder is not. that's way little difference with performance. StringBuilder is faster than StringBuffer,We can say, StringBuilder is replacement of StringBuffer by sun, just avoiding the synchronized from all the public method, else all are the same even functions functionality is also. Good to use of StringBuilder and StringBuffer is: if your text is going to change and use by multiple thread better to use StringBuffer. if your text is going to change but use by single thread then use StringBuilder. | |||
|
feedback
|
|
StringBuffer is used to store character strings that will be changed (String objects cannot be changed). It automatically expands as needed. Related classes: String, CharSequence. StringBuilder was added in Java 5. It is identical in all respects to StringBuffer except that it is not synchronized, which means that if multiple threads are accessing it at the same time, there could be trouble. For single-threaded programs, the most common case, avoiding the overhead of synchronization makes the StringBuilder very slightly faster. | |||||
feedback
|
|
| ||||
|
feedback
|
|
String is an immutable object which means the value cannot be changed where as StringBuffer is mutable. The StringBuffer is Synchronized hence thread safe where as StringBuilder is not and suitable for only single threaded instances. | ||||
|
feedback
|
| |||
|
feedback
|