I have code as follows :
String s = "";
for (My my : myList) {
s += my.getX();
}
Findbugs always reports error when I do this.
|
I have code as follows :
Findbugs always reports error when I do this. |
||||
|
I would use
However, if you are iterating and concatenating I would suggest
|
|||||||||||||
|
|
The String object is immutable in Java. Each + means another object. You could use StringBuffer to minimize the amount of created objects. |
|||||||||
|
|
The compiler can optimize some thing such as "foo"+"bar" To StringBuilder s1=new StringBuilder(); s1.append("foo").append("bar"); However this is still suboptimal since it starts with a default size of 16. As with many things though you should find your biggest bottle necks and work your way down the list. It doesn't hurt to be in the habbit of using a SB pattern from the get go though, especially if you're able to calculate an optimal initialization size. |
|||
|
|
Premature optimization can be bad as well as it often reduces readability and is usually completely unnecessary. Use |
|||
|
|
|
It is not 'always bad' to use "+". Using StringBuffer everywhere can make code really bulky. If someone put a lot of "+" in the middle of an intensive, time-critical loop, I'd be annoyed. If someone put a lot of "+" in a rarely-used piece of code I would not care. |
|||
|
|
|
Each time you do
In case of StringBuilder, it comes to:
As you can clearly conclude,
And use it like:
In C# I'm told its about as same as
Then you can call it with:
|
||||
|
|
|
I would say use plus in the following:
And use StringBuilder class everywhere else. As already mentioned in the first case it will be optimized by the compiler and it's more readable. |
|||
|
|
|
One of the reasons why FindBugs should argue about using concatenation operator (be it "+" or "+=") is localizability. In the example you gave it is not so apparent, but in case of the following code it is:
If this looks somewhat familiar, you need to change your coding style. The problem is, it will sound great in English, but it could be a nightmare for translators. That's just because you cannot guarantee that order of the sentence will still be the same after translation – some languages will be translated to "1 blah blah", some to "blah blah 3". In such cases you should always use MessageFormat.format() to build compound sentences and using concatenation operator is clearly internationalization bug. BTW. I put another i18n defect here, could you spot it? |
|||
|
|
getX()returned a string? – ColinD Oct 1 '10 at 0:58