最近,我观察到在 Java 中访问私有字段的意外行为。考虑以下示例,该示例说明了该行为:
public class A {
private int i; <-- private field!
public A(int i) {
this.i = i;
}
public void foo(A a) {
System.out.println(this.i); // 1. Accessing the own private field: good
System.out.println(a.i); // 2. Accessing private field of another object!
}
public static void main(String[] args) {
(new A(5)).foo(new A(2));
}
}
为什么允许我在方法中访问另一个类对象的私有字段A
(foo
第二种情况)?