What is the main difference between StringBuffer and StringBuilder? Is there any performance issues when deciding on any one of these?

link|improve this question
feedback

11 Answers

up vote 64 down vote accepted

StringBuffer is synchronized, StringBuilder is not.

link|improve this answer
6  
and StringBuilder is intended as a drop in replacement for StringBuffer where synchronisation is not required – Joel Dec 23 '09 at 8:52
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

This class [StringBuilder] 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.

So it was made to substitute it.

The same happened with Vector and ArrayList.

link|improve this answer
feedback

StringBuilder is faster than StringBuffer because it's not synchronized.

Here's a simple benchmark test:

public class Main {
    public static void main(String[] args) {
        int N = 77777777;
        long t;

        {
            StringBuffer sb = new StringBuffer();
            t = System.currentTimeMillis();
            for (int i = N; i --> 0 ;) {
                sb.append("");
            }
            System.out.println(System.currentTimeMillis() - t);
        }

        {
            StringBuilder sb = new StringBuilder();
            t = System.currentTimeMillis();
            for (int i = N; i --> 0 ;) {
                sb.append("");
            }
            System.out.println(System.currentTimeMillis() - t);
        }
    }
}

A test run gives the numbers of 2241 ms for StringBuffer vs 753 ms for StringBuilder.

link|improve this answer
5  
+1 for testing the performance. – Alfredo O Sep 28 '11 at 14:21
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.

link|improve this answer
8  
1.4 is at its End of Service Life, so it hardly seem worth worrying about pre-1.5. – Tom Hawtin - tackline Dec 14 '08 at 17:15
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.

link|improve this answer
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

link|improve this answer
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.

link|improve this answer
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.

link|improve this answer
1  
Single-threaded programs are not the most common case in Java, but StringBuilder‍s are usually local to a method, where they are visible to only one thread. – finnw Jan 25 '11 at 14:36
feedback

StringBuffer is synchronized, but StringBuilder is not. As a result, StringBuilder is faster than StringBuffer.

link|improve this answer
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.

link|improve this answer
feedback

StringBuffer is Synchronized while StringBuilder is not. StringBuilder is faster than StringBuffer.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.