PPT Slide
?The String class provides read-only strings
and supports operations on them
? A String can be created implicitly either by
using a quoted string (e.g. "grass") or by
the concatenation of two String objects,
? A String can also be created using new
and a String constructor.
String aString = new String();
String bString = new String("grass”);