假设我有以下代码:
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();
}
}
我如何访问" a" " A"间接地继承到" C"。我知道我可以创建一个" A级",我也知道我可以在" B级"返回" super.a" (""" A类"的变量),当然如果它是静态的,我可以像#34; A.a"那样访问它。
如果有任何其他方法可以直接访问它,请启发我。
(事先感谢)。
答案 0 :(得分:2)
转换为A,然后访问变量:
((A)this).a