I just encountered StringBuilder for the first time and was surprised since Java already has a very powerful String class that allows appending.
Why a second String class?
Where can I learn more about StringBuilder?
|
I just encountered Why a second Where can I learn more about |
||||
|
|
|
On the other hand Thus it is more efficient to have:
rather than Note that in the example I use a loop. As helios notes in the comments, the compiler automatically translates expressions like
Note also that there is |
|||||||||||||
|
|
Here is a concrete example on why -
As you can see the difference in performance is significant. |
|||||||||||||||||
|
|
String class is immutable whereas StringBuilder is mutable.
Above code will create two object because String is immutable
Above code will create only one object because StringBuilder is not immutable. Lesson: Whenever there is a need to manipulate/update/append String many times go for StringBuilder as its efficient as compared to String. |
|||||
|
|
|
StringBuilder is for, well, building strings. Specifically, building them in a very performant way. The String class is good for a lot of things, but it actually has really terrible performance when assembling a new string out of smaller string parts because each new string is a totally new, reallocated string. (It's immutable) StringBuilder keeps the same sequence in-place and modifies it (mutable). |
|||
|
|
|
Efficiency. Each time you concatenate strings, a new string will be created. For example:
This creates a new, temporary string, copies "a" and "b" into it to result in "ab". Then it creates another new, temporary string, copies "ab" and "c" into it, to result in "abc". This result is then assigned to The result is a Schlemiel the Painter's algorithm of O(n²) (quadratic) time complexity.
|
|||
|
|
|
The StringBuilder class is mutable and unlike String, it allows you to modify the contents of the string without needing to create more String objects, which can be a performance gain when you are heavily modifying a string. There is also a counterpart for StringBuilder called StringBuffer which is also synchronized so it is ideal for multithreaded environments. The biggest problem with String is that any operation you do with it, will always return a new object, say:
|
|||
|
|
|
StringBuilder is good when you are dealing with larger strings. It helps you to improve performance. Here is a article that I found that was helpful . A quick google search could have helped you. Now you hired 7 different people to do a google search for you . :) |
|||
|
|
|
Java has String, StringBuffer and StringBuilder String : Its immutable StringBuffer : Its Mutable and ThreadSafe StringBuilder : Its Mutable but Not ThreadSafe, introduced in Java 1.5 String eg: public class T1 {
} output: 10 Different Strings will be created instead of just 1 String. Helloa Helloaa Helloaaa Helloaaaa Helloaaaaa Helloaaaaaa Helloaaaaaaa Helloaaaaaaaa Helloaaaaaaaaa Helloaaaaaaaaaa StringBuilder eg : Only 1 StringBuilder object will be created.
} |
|||
|
|