在下面的代码中,方法getX()中的变量x如何绑定到A类实例的成员字段,即使在运行时'这个'是指类型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
答案 0 :(得分:3)
字段未以多态方式解析。在编译时,this.x
被静态解析为“获取在类A中定义的字段x的值”。