What is the main difference between StringBuffer and StringBuilder? Is there any performance issues when deciding on any one of these?
|
|
|||||||||
|
|
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. |
||||
|
|
|
Here's a simple benchmark test:
A test run gives the numbers of |
|||||||||||||||||
|
Simply use
Since If you are trying to share between threads, you can use |
||||
|
|
|
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. |
|||||||
|
|
Example of good usage: If your text is going to change and is used by multiple threads, then it is better to use |
||||
|
|
|
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. |
||||
|
|
|
The javadoc explains the difference:
|
|||
|
|
|
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 |
|||
|
|
|
Better use StringBuilder since it is not synchronized and therefor better performance. StringBuilder is a drop-in replacement of the older StringBuffer. |
|||||||||
|
|
Read http://leepoint.net/notes-java/data/strings/23stringbufferetc.html for more details |
|||
|
|
|
During a training, I made a few cases where StringBuffers are faster than StringBuilder. The trainees had different results, so making a law saying StringBuffers are slower is just a wrong law. It depends on the JVM's good will. In the below exemple, The StringBuffer is before the StringBuilder, so the JVM warmup argument doesn't stand. If I inverse the StringBuffer test with the StringBuilder, I also have a faster StringBuffer. Here is my test
Results :
strings:319740 The reason is that the JIT/hotspot/compiler/something makes optimizations when it detects that there is no need for checking locks. Now let's use an Executor for multiple threads :
Now StringBuffers take 157 ms for 100000 appends. It's not the same test, but compared to the previous 37 ms, you can safely assume that StringBuffers are slower despite - or because of ! - multithreading use. But with StringBuilder, you have java.lang.ArrayIndexOutOfBoundsException, because a concurrent thread tries to add something where it should not. Conclusion it that you don't have to chase StringBuffers. And where you have threads, think about what they are doing before trying to gain a few nanoseconds. |
||||
|
|
|
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. |
|||||
|
|
|
||||
|
|
|
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. |
||||
|
|
String is a immutable , stringbuffer is a mutable, string builder also mutable but its not syncronized, StringBuffer is a syncronized, |
||||
|
|