Possible Duplicate:
Is there a difference between String concat and the + operator in Java?
Is there any difference between:
String A = "Hello";
String B = A.concat("Testing");
and
String A = "Hello";
String B = A + "Testing";
Yes i know there ain't any difference in the output. Wanted to know if there is any technical difference. Thanks !