In Java, String objects are immutable — once created, their contents can never change. Any operation that appears to modify a String actually creates a new String. For efficient repeated modification, you use StringBuilder instead.
Strings are immutable
;
s.concat();
System.out.println(s);
s = s + ;
