I am trying to become more familiar with using the JavaDocs. I was looking at the String function and I thought it was interesting how a String is really just an array of characters held in a private reference variable.
When I was looking at the source code of the String it shows one of the constructors as the following:
String(int offset, int count, char value[]) {
this.value = value;
this.offset = offset;
this.count = count;
}
Then I go over to look at the String JavaDoc, and it doesn't show a constructor with that type of signature.. what gives?