Please tell me a real time situation to compare String, StringBuffer, and StringBuilder?
|
feedback
|
|
Mutability Difference:
Thread-Safety Difference: The difference between Situations:
| ||||
feedback
|
See an example here. | |||||||||
feedback
|
|
This is a very good article http://kaioa.com/node/59 | |||||||
feedback
|
|
The Basics:
You should prefer The Details: Also note that The re-sizing can get very degenerate. It basically re-sizes the backing Array to 2 times its current size every time it needs to be expanded. This can result in large amounts of RAM getting allocated and not used when In Java In the auto re-size case, at the 17th character the backing Array gets re-allocated and copied to 32 characters, at the 33th character this happens again and you get to re-allocated and copy the Array into 64 characters. You can see how this degenerates to lots of re-allocations and copies which is what you really are trying to avoid using This is from the JDK 6 Source code for AbstractStringBuilder
A best practice is to initialize the Also beware of initializing a
If you by chance do end up with an instance of The Alternatives: Just as a note, if you are doing really heavy Another alternative, is to create a Also don't forget about | |||||||
feedback
|
|
Do you mean, for concatenation? Real world example: You want to create a new string out of many others. For instance to send a message: String
StringBuilder
Or
StringBuffer ( the syntax is exactly as with StringBuilder, the effects differ ) About
The former is synchonized and later is not. So, if you invoke it several times in a single thread ( which is 90% of the cases ), So, it is recommendable to use
edit Just for who is curious, this is what the compiler does for this class:
javap -c StringConcatenation
Lines numbered 5 - 27 are for the String named "literal" Lines numbered 31-53 are for the String named "builder" Ther's no difference, exactly the same code is executed for both strings. | |||||||||||||||
feedback
|
|
Also, So in a real-time situation when different threads are accessing it, | |||
|
feedback
|
|
When you are using String, you are making a new String each time you are adding 2 of them. When you are using StringBuilder, it uses a buffer to make less String addition and will therefore be more performant when you want to add a lot of string one after the other. StringBuffer is the exact same thing as of StringBuilder except that all his method are synchronized. The only use of that class is if you need to share the buffer with multiple thread (which rarely happends). | |||
|
feedback
|
|
Note that if you are using Java 5 or newer, you should use
In practice, you will almost never use this from multiple threads at the same time, so the synchronization that | |||
|
feedback
|
|
Personally, I don't think there is any real world use for | |||
|
feedback
|
|
I was wondering about the performance impact it will have using String.concat(), StringBuffer or StringBuilder. So, I run some simple benchmarks. Comparing String.concat, StringBuilder and StringBuffer in Java | |||
|
feedback
|