What is the style recommendation for the Java string concatenation operator "+"?
Edit: Specifically, should it be used or not?
|
What is the style recommendation for the Java string concatenation operator "+"? Edit: Specifically, should it be used or not? |
|||||
|
|
Thinking in Java (Eckel) says that the overloaded + operator is implemented using StringBuilder (although not all compilers may be supporting this as per alphazero's answer) and thus multiple String objects and the associated memory use and garbage collection are avoided. Given this, I would answer my own question by saying that the + operator is probably fine, style-wise. The only caveat is that the + is the only instance of overloading in the language and that exceptionalism might count as a minor reason not to use it. In retrospect, the advantage of terseness is pretty significant in some situations and that has got to count for a lot of style. |
||||
|
|
|
As long as your team members are comfortable with it. Because there is no "correct" coding style. But I agree that you should always use white-spaces between strings and operator for better readability. |
|||
|
|
|
Is this what you meant?
or, if you have long lines
If you have the time to format this right, then:
Basically, every time you use the |
|||
|
|
|
The overall recommendation is not to use this form (at all) if performance is of concern, and to instead use |
|||||||||||||
|