String类的compareTo()方法的源码的一部分如下:
public int compareTo(String anotherString) {
int len1 = count;
int len2 = anotherString.count;
int n = Math.min(len1, len2);
char v1[] = value;
char v2[] = anotherString.value;
int i = offset;
int j = anotherString.offset;
其中,传入的参数anotherString的count值为什么可以直接通过anotherString.count这种方式获取呢?