String str = "hello";
str.concat("world");
// Outputs: hello
System.out.println(str);

String str = "hello";
String concat = str.concat("world");
// Outputs: helloworld
System.out.println(concat);

Once created cannot be modified, any modification creates a new String

Comments