标签: java inheritance
class parent{ int a; } class child extends parent{ //how to get access to "a" here? }
显然,声明同名int a的另一个变量将使用它,因为它来自类child。
int a
child
答案 0 :(得分:0)
使用关键字super。 super.a应检索父变量,即使它已在子变量中再次定义。
super
super.a