本文首发自「慕课网」,想了解更多IT干货内容,程序员圈内热闻,欢迎关注!
作者| 慕课网精英讲师 朱广蔚
在面向对象的程序设计中,定义一个新的 class 的时候,可以从某个现有的 class 继承,新的 class 称为子类,而被继承的 class 称为基类、父类或超类。
Python 中继承的语法如下:
class Parent:passclass Child(Parent):pass
代码块12345
子类继承父类的属性和方法,使得子类具有父类的属性和方法,从而实现代码重用;同时,子类可以增加自己特有的方法。例如,下图中定义了 3 个类,类 Teacher 与类 Student 继承于类 Person,如图所示:
class Person:def __init__(self, name, age):self.name = nameself.age = agedef introduce(self):print('My name is', self.name)print('My age is', self.age)
代码块12345678
class Teacher(Person):def __init__(self, name, age, salary):self.name = nameself.age = ageself.salary = salarydef showSalary(self):print('My salary is', self.salary)
代码块12345678
class Student(Person):def __init__(self, name, age, grade):self.name = nameself.age = ageself.grade = gradedef showGrade(self):print('My grade is', self.grade)
代码块12345678
teacher = Teacher('tom', 30, 5000)
teacher.introduce()
teacher.showSalary()
print()
student = Student('jerry', 10, 90)
student.introduce()
student.showGrade()
代码块1234567
运行程序,输出如下结果
My name is tom
My age is 30
My salary is 5000My name is jerry
My age is 10
My grade is 90
代码块1234567
在前面的小节中,类 Person 的构造方法如下:
class Person:def __init__(self, name, age):self.name = nameself.age = age
代码块1234
类 Teacher 的构造方法如下:
class Teacher(Person):def __init__(self, name, age, salary):self.name = nameself.age = ageself.salary = salary
代码块12345
类 Student 的构造方法如下:
class Student(Person):def __init__(self, name, age, grade):self.name = nameself.age = ageself.grade = grade
代码块12345
在这 3 段初始化代码中,存在明显的代码重复,我们希望:
class Person:def __init__(self, name, age):self.name = nameself.age = agedef introduce(self):print('My name is', self.name)print('My age is', self.age)
代码块12345678
class Teacher(Person):def __init__(self, name, age, salary):Person.__init__(self, name, age)self.salary = salarydef showSalary(self):print('My salary is', self.salary)
代码块1234567
class Student(Person):def __init__(self, name, age, grade):Person.__init__(self, name, age)self.grade = gradedef showGrade(self):print('My grade is', self.grade)
代码块1234567
teacher = Teacher('tom', 30, 5000)
teacher.introduce()
teacher.showSalary()
print()
student = Student('jerry', 10, 90)
student.introduce()
student.showGrade()
代码块1234567
运行程序,输出如下结果
My name is tom
My age is 30
My salary is 5000My name is jerry
My age is 10
My grade is 90
代码块1234567
定义一个新的 class 的时候,可以从多个现有的 class 继承,如果继承多个父类,称为多继承。Python 中多继承的语法如下:
class Father:passclass Mother:passclass Child(Father, Mother):pass
代码块12345678
子类继承所有父类的属性和方法,从而实现代码重用。
本节构造 3 个类:Father、Mother 和 Child,Child 继承于两个类 Father 和 Mother,它继承了这两个类的属性和方法,同时有自己特有的属性和方法。
class Father:def __init__(self, father_attr):self.father_attr = father_attrdef father_method(self):print('father_attr =', self.father_attr)
代码块123456
class Mother:def __init__(self, mother_attr):self.mother_attr = mother_attrdef mother_method(self):print('mother_attr =', self.mother_attr)
代码块123456
class Child(Father, Mother):def __init__(self, father_attr, mother_attr, child_attr):Father.__init__(self, father_attr)Mother.__init__(self, mother_attr)self.child_attr = child_attrdef child_method(self):print('child_attr =', self.child_attr)
代码块12345678
child = Child('Father', 'Mother', 'Child')
child.father_method()
child.mother_method()
child.child_method()
代码块1234
程序输出结果如下:
father_attr = Father
mother_attr = Mother
child_attr = Child
代码块123
欢迎关注「慕课网」,发现更多IT圈优质内容,分享干货知识,帮助你成为更好的程序员!