The plus ( + ) operator and String.concat() method gives the same result.
String.concat()
plus ( + ) operator;
str1 + str2
There are pretty the same but + is more clear and for sure faster.
+
Look at this performance test and also see this
It is strongly recommended that assignment operators (+, +=) are used instead of the concat() method.