•About
1/3 of it is comment!
• public final class String
{ … }
•Implementation
uses a character array:
–private char[] value;
–private int offset;
–private int count;
•The
characters that make up this String are stored in value at positions offset … offset+count-1 (usually
offset = 0)
–