Open NicolaBernini opened 5 years ago
Java Basic Elements
The String can be concatenated with the + operator
String
+
Example
String a = "Hi "; String b = "there"; System.out.println(a+b);
Overview
Java Basic Elements