如何访问此私有变量?
当我编写以下代码时,编译器如何不抱怨?
public class MyClass
{
private int count;
public MyClass(int x){
this.count=x;
}
public void testPrivate(MyClass o){
System.out.println(o.count);
}
}
即使它是编写的同一类的实例,它不应该在 ?毕竟,我正在尝试直接访问私有变量。
代码甚至可以正常运行。testPrivate
System.out.println(o.count)