I read about the way Java works with += operator, using StringBuilder. Is it the same with a ("a" + "b") operation?
|
|
No. It's no the same using StringBuilder than doing "a" + "b". In Java, String instances are immutable. So, if you do:
You are creating new Strings every time you concatenate. On the other hand, StringBuilder is like a buffer that can grow as it needs when appending new Strings.
Rule of the thumb is (changed thanks to the comments I got): If you are going to concatenate a lot (i.e., concatenate inside a loop, or generating a big XML formed by several string concatenated variables), do use StringBuilder. Otherwise, simple concatenation (using + operator) will be just fine. Compiler optimizations also play a huge role when compiling this kind of code. Here's further explanation on the topic. And more StackOVerflow questions on the issue: |
|||||||||||||||||||||
|
|
If you combine literal strings (literally If you have two non-literal strings and join them with
...what the Sun compiler will actually produce as bytecode looks something like this:
(Yes, really — see the disassembly at the end of this answer.) Note that it created a new You could gain efficiency, if necessary, by rewriting it to explicitly use a
There we've used an explicit You can see this under-the-covers
...which disassembles (using
Note how a new All of this temporary allocation stuff sounds ugly, but again, only if you're dealing with substantial loops and/or substantial strings. Also, when the resulting bytecode is run, the JVM may well optimize it further. Sun's HotSpot JVM, for instance, is a very mature JIT optimizing compiler. Once it's identified the loop as a hot spot, it may well find a way to refactor it. Or not, of course. :-) My rule of thumb is I worry about it when I see a performance problem, or if I know I'm doing a lot of concatenation and it's very likely to be a performance problem and the code won't be significantly impacted from a maintainability standpoint if I use a |
|||||||
|
|
Yes, it's the same, but the compiler can additionally optimize concatenations of literals before issuing the code, so |
|||||
|
|
For concatenating a fixed number of strings in one expression with E.g. the line
results in the same bytecode as the line
when compiled using the javac compiler. (The Eclipse compiler produces somewhat more optimized code by invoking As mentioned in other answers, the compiler will concatenate string literals like As mentioned everywhere on the net, you should not use |
|||
|
|
|
If you’re only building long strings, then using StringBuilder is recommended. For shorter strings, with fixed creations (such as res = a + " " + b + " : " + c;) it should be okay. For iterations over a group of values, I’d seriously recommend StringBuilder. |
|||
|
|
Though readable, easy to format and straight forward, concatenating strings with "+" is considered to be bad in Java. Each time you append something via '+' (String.concat()) a new String is created, the old String content is copied, the new content is appended, and the old String is discarded. The bigger the String gets the longer it takes - there is more to copy and more garbage is produced. Note: if you are just concatenating a few (say 3,4) strings and not building a string via a loop or just writing some test application, you could still stick with "+"
When performing extensive String manipulation (or appending through a loop), replacing "+" with Also to be noted that optimizations in the Sun Java compiler, which automatically creates |
||||
|
|
|
|||
|
