The String + Operator
The Operator + is said to be overloaded with respect to Strings.
It can be combined with basic numeric types which then automatically convert to Strings.
String h = new String(“Hello”);
String t = new String(“ there”);
String ht = h + t ; // ht = “Hello there”
String ht2 = ht + 2 ; // ht2 = “Hello there2”