标题: 关于继承有个地方有点晕,求帮忙解释下 [打印本页] 作者: Asdstkwq 时间: 2016-3-26 15:53 标题: 关于继承有个地方有点晕,求帮忙解释下 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;
}