在下面的代码中,getX() 方法中的变量 x 如何绑定到 A 类实例的成员字段,即使在运行时“this”指的是 B 类型的对象。这发生在编译时还是运行时时间。
class A {
public void getX(){
Class cls = this.getClass();
System.out.println("The type of the object is: " + cls.getName());
System.out.format("value of x = %d\n", this.x);}
public int x = 0;
}
public class B extends A {
public static void main(String[] args) {
B obj = new B();
obj.getX();}
public int x = 1;
}
输出是:
The type of the object is: B
value of x = 0