Comme avec C #, vous pouvez concaténer des chaînes à l'aide de l'opérateur (+).
String str1 = "brise fraîche";
String str2 = "Institut Seifu de technologie de l'information";
String str3 = str1 + str2;
System.out.println(str3);
résultat:

Recommended Posts