As with C #, you can use the (+) operator to concatenate strings.
String str1 = "Seifuku"; String str2 = "Seifu Institute of Information Technology"; String str3 = str1 + str2; System.out.println(str3);
result:
Recommended Posts