SE450
:
Strings
[32/53]
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);