Difference between String and StringBuffer/StringBuilder in Java
Posted: February 15th, 2008 | Author: Nischal Shetty | Filed under: Java | 19 Comments »Well, the most important difference between String and StringBuffer/StringBuilder in java is that String object is immutable whereas StringBuffer/StringBuilder objects are mutable.
By immutable, we mean that the value stored in the String object cannot be changed. Then the next question that comes to our mind is “If String is immutable then how am I able to change the contents of the object whenever I wish to?” . Well, to be precise it’s not the same String object that reflects the changes you do. Internally a new String object is created to do the changes.
So suppose you declare a String object:
String myString = “Hello”;
Next, you want to append “Guest” to the same String. What do you do?
myString = myString + ” Guest”;
When you print the contents of myString the output will be “Hello Guest”. Although we made use of the same object(myString), internally a new object was created in the process. So, if you were to do some string operation involving an append or trim or some other method call to modify your string object, you would really be creating those many new objects of class String.
Now isn’t that a performance issue?
Yes, it definitely is.
Then how do you make your string operations efficient?
By using StringBuffer or StringBuilder.
How would that help?
Well, since StringBuffer/StringBuilder objects are mutable, we can make changes to the value stored in the object. What this effectively means is that string operations such as append would be more efficient if performed using StringBuffer/StringBuilder objects than String objects.
Finally, whats the difference between StringBuffer and StringBuilder?
StringBuffer and StringBuilder have the same methods with one difference and that’s of synchronization. StringBuffer is synchronized( which means it is thread safe and hence you can use it when you implement threads for your methods) whereas StringBuilder is not synchronized( which implies it isn’t thread safe).
So, if you aren’t going to use threading then use the StringBuilder class as it’ll be more efficient than StringBuffer due to the absence of synchronization.
Incase you do not know – Here’s how you use StringBuilder
A simple Example to demonstrate that String object is Immutable
Incase you still have any doubts regarding String or StringBuilder then do leave a comment. I’ll be more than eager to help you out.
Note: StringBuilder was introduced in Java 1.5 (so if you happen to use versions 1.4 or below you’ll have to use StringBuffer)
Link: Have doubts about the ‘final’ keyword? check out my post – Click Here!












A very good unswer. Thnks a lot.
Please furnish a snippet of StringBuffer also.
Excellent Answer. please give Explanation for StringBuffer also. thanks.
Excellent Answer. please give Explanation for StringBuffer also. thanks.
you told StringBuilder is not synchronized(i.e) not threadsafe.But if i declare StringBuilder Object inside a method,whether it will be threadsafe object or not.
Also,StringBuffer is synchronized,and if i declare StringBuffer object outside a method as instance/class level,can we call it as thread-safe variable?
@sampath
A variable declared inside a method should be thread safe since method variables are allocated space in the stack which is specific to every thread.
In the case of StringBuffer being declared as an instance variable, it should behave in a thread safe manner. But dont take my words blindly. Research a bit more and do correct me if I’m wrong.
no need to search any site for this answer this is more than enough………its 200% is good.
Waw! It is a fantastic and logical explanation. But i need more about StringBuffer With example demonstrated.
Tnx!!!!
@Gezahegn
You can check out a tiny example on StringBuilder… StringBuffer would be the same as well…
http://www.techtamasha.com/heres-how-you-use-stringbuilder/30
Please provide some more difference’s so that these were helpful for interview purposes.
Thx.,
Wow……
Excellent way of explaining. I am quite impressed by the way of presentation.
Its like….”Read once and Remember forever !”
Grt job buddy.
Kudos to TechTamasha team.
thanks Nischal Shetty….
I cleared my all doubt about String and StringBuffer
What an explanation …hats off… Please keep up this good work.
thank you very much
Excellent Explanation. With simple and smart example.
Excellent …I was very much confused before that,,,but everything is been cleared…
very useful content
Superb Answer with excellent example……I like it…. I got to know the difference bt String and StringBuffer now exactly….
well thats a great explanation , i’ve been all around and the most precise post i’ve come through , now i understood it perfectly , those phone screening interviewers always ask this question , thanks a lot u r fantastic , and if u don’t mind i’d come back to you for some other doubts ,,
@amm glad to know it helped you