public class A {
protected int b = 16;
}
public class B extends A{
private int b=20;
public static void main(String[] args)
{
B b = new B();
System.out.println(b.b);
}
}
输出为 20。 引用类型 B 的对象的 b 怎么可能不能正确访问私有成员?