public static void main(String[] args) {
Student stu = new Student();
stu.show();
}
class People{
String name;
public int age = 30
public void show(){
System.out.println(age);
}
}
class Student extends People{
public int age = 20;
}
运行结果是30,也就是父类的属性,为什么调用的不是重写的子类的属性
我试了必须子类也重写show方法,才能调用子类的属性
晕了。。。。。。
|
|