When should we use + for concatenation of strings, when is StringBuilder preferred and When is it suitable to use concat.
I've heard StringBuilder is preferable for concatenation within loops. Why is it so?
Thanks.
|
|
I tend to use The reason to prefer As others have pointed out, when you use Having said all this, I think top priority should be writing clear code. There are some great profiling tools available for Java (I use YourKit), which make it very easy to pinpoint performance bottlenecks and optimize just the bits where it matters. P.S. I have never needed to use |
||||
|
|
|
Modern Java compiler convert your + operations by StrinBuilder's append. I mean to say if you do
You can decompile code using DJ or Cavaj to confirm this :) So now its more of matter of choice than performance benefit to use + or StringBuilder :) However given the situation that compiler does not do it for your (if you are using any privat java sdk to do it then it may happen), then surely StringBuilder is the way to go as you end up avoiding lots of unnecessary String objects |
|||||||||
|
|
From "Java/J2EE Job Interview Companion" String String is immutable: you can’t modify a string object but can replace it by creating a new instance. Creating a new instance is rather expensive.
The above code would build 99 new String objects, of which 98 would be thrown away immediately. Creating new objects is not efficient. StringBuffer/StringBuilder StringBuffer is mutable: use StringBuffer or StringBuilder when you want to modify the contents. StringBuilder was added in Java 5 and it is identical in all respects to StringBuffer except that it is not synchronised, which makes it slightly faster at the cost of not being thread-safe.
The above code creates only two new objects, the StringBuffer and the final String that is returned. StringBuffer expands as needed, which is costly however, so it would be better to initilise the StringBuffer with the correct size from the start as shown. |
|||
|
|
|
If all concatenated elements are constants (example : If you use + with non-constants, the Compiler will internally use StringBuilder as well, but debugging becomes hell, because the code used is no longer identical to your source code. |
|||
|
|
|
My recommendation would be as follows:
|
|||
|
|
|
Use The reason for this is that using normal concatenation produces lots of intermediate Using |
|||
|
|
|
The performace gain from compiler applies to concatenating constants. The rest uses are actually slower then using StringBuilder directly. There is not problem with using "+" e.g. for creating a message for Exception because it does not happen often and the application si already somehow screwed at the moment. Avoid using "+" it in loops. For creating meaningful messages or other parametrized strings (Xpath expressions e.g.) use String.format - it is much better readable. |
|||
|
|
|
I suggest to use concat for two string concatination and StringBuilder otherwise, see my explanation for concatenation operator (+) vs concat() |
|||
|
|