Is this bad ?
(imagine it's bigger)
int count;
//done something to count
String myString = "this " + "is " + "my " + "string" + "and " + this.methodCall() + " answer " + "is : " + count;
or is it better in a StringBuilder/StringBuffer?
|
Is this bad ? (imagine it's bigger)
or is it better in a StringBuilder/StringBuffer? |
||||
|
|
|
Java compiler will convert it into StringBuilder to increase the performance of repeated string concatenation. http://java.sun.com/docs/books/jls/third%5Fedition/html/expressions.html#15.18.1.2 Its when you are concatenating in a loop compiler can't substitute StringBuilder by itself that's when you should consider from concatenation to StringBuilder. |
|||
|
|
|
No, it's fine. If you use Sun's Java 6 compiler it will actually use StringBuilder. Read this article |
|||
|
|
|
It would be more readable if you use if you write
Internally it will create
|
|||
|
|
|
The Javadoc for StringBuffer states from Java 5.0
The compiler will combine the string literals so its the same as writing
which is the same as
I wouldn't worry about the performance unless you need to eliminate garbage from your system, in which case you wouldn't use Strings here. (Its highly unlikely you need to worry about it) |
|||
|
|
|
You should prefer StringBuilder over string concatenation, since you have method call and variable being added to Strings. However, the quantity of simple Strings like "this " and "is" has no effect on performance, since compiler will effectively process them and create interned Strings that will end up in the bytecode. Having this said, those mentioned Strings will have no overhead on the final performance. |
|||
|
|
|
(imagine it's bigger)...
More here: http://www.ibm.com/developerworks/websphere/library/bestpractices/string_concatenation.html
Can be related: java String concatenation |
|||||||||||||||||
|
|
I don't think it makes any difference to performance when a string is written like this - the compiler will optimise it anyway. |
||||
|
|
|
Relatively new article with graph, Showing that concatenation with '+' scales pretty horribly. And as mentioned in another answer, StringBuilder will probably be more readable. |
|||
|
|