继承的定义与使用、方法覆写、super关键字1. 继承2. 方法覆写3. super关键字
文章目录1. 了解继承2. 继承的概念3. 继承的实现1. 了解继承 定义两个类(人类、学生类):class Person{ private String name; private int age; public String getName(){ return this.name; } public void setName(St...