1

在下面的代码中,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
4

1 回答 1

3

字段不是多态解析的。在编译时,this.x静态解析为“获取类 A 中定义的字段 x 的值”。

于 2013-02-04T08:32:56.473 回答