面向对象-继承
Java继承
继承的概念:
就是抽取子类的共性,子类继承父类,就具备父类的属性和行为
继承的语法格式:
通过extends实现
格式: class 子类 extends 父类 (一定是现有父才能做子)
例如: class Student extends Person{};表示Student类继承自Person类
class Teacher extends Person{};表示Teacher类继承自Person类
继承的特点:
继承可以让类与类之间产生父子关系,然后子类就可以使用父类中非私有的成员
例如:
class Student extends Person{};
表示Student类继承自Person类
Student类可以使用Person类中所有(非私有)的属性或者行为
注意:继承具有传递性,孙子类也可以使用祖辈类的非私有的属性或者行为
publ
面向对象-继承最先出现在Python成神之路。
共有 0 条评论