Strings
- Sequence of Unicode
characters
- (Technically, code units in
UTF-16 encoding)
- length
method yields number of characters
- ""
is the empty string of length 0, different from null
- charAt
method yields characters:
char c = s.charAt(i);
String
objects are immutable.