为什么这里会报此处不允许使用空类型?,调用父类的成员变量就没问题
class H1{int x=10;
void show(){
System.out.println("A.X="+x);
}
}
classH12 extends H1{
int y=30;
void show(){
System.out.println("B.x="+this.y+"SUPER="+super.show());
}
}
public class Test12{
public static void main(String args[]){
H12 h2 =new H12();
h2.show();
}
}
请大家帮忙看看
变量定义的问题 分析下作用范围 局部变量的作用范围不一样
页:
[1]