小编典典

访问隐藏在第三扩展类中的间接超类变量

java

假设我有如下代码:

    class A {
    int a = 1; 
    }

    class B extends A {
    int a = 2; 
    }

    class C extends B {
    int a = 3;

    void print_it() {
    int a = 4;  // Local variable "a" to the " print_it " method

    System.out.println(a);       //Should be 4

    System.out.println(this.a);  //Should be 3

    System.out.println(super.a); //Should be 2

    System.out.println("HOW DO I PRINT \" a \" OF THE \" CLASS A      \" ");      //I need to print 1  
    }

    public static void main(String[] argue) {
    C obj = new C();               
    obj.print_it();
    } 
    }

我如何访问间接继承到“类C”的“类A”的“ a”。我知道我可以创建“类A”的对象,也知道可以在“类B”中创建方法以返回“ super.a”(“ A类”的“
a”变量),当然,如果它是静态的,我可以像“ Aa”一样访问它。

如果还有其他直接访问它的方法,请赐教。

(提前致谢)。


阅读 234

收藏
2020-11-30

共1个答案

小编典典

强制转换为A,然后访问变量:

((A)this).a
2020-11-30