public class Test
{
public static void main(String[] args) 
{
System.out.println("Hello World!");
String s = new String();
s = "abcd";
System.out.println(s.count);
}
}查看String类的源代码发现count是String的私有变量
    /** The count is the number of characters in the String. */
    private final int count;
那为什么在编译的时候System.out.println(s.count);这里编译不过去?
请指教?