继承允许我们定义一个类,该类继承另一个类的所有方法和属性。父类是被继承的类,也叫做基类。子类是从另一个类继承的类,也叫做派生类。
任何类都可以成为父类,因此语法与创建任何其他类相同:
示例,创建一个名为 Person 的类,具有 firstname 和 lastname 属性以及一个 printname 方法:
class Person:
def __init__(self, fname, lname):
self.firstname = fname
self.lastname = lname
def printname(self):
print(self.firstname, self.lastname)
使用 Person 类创建一个对象,然后执行 printname 方法:
x = Person("John", "Doe")
x.printname()
要创建一个从另一个类继承功能的类,创建子类时将父类作为参数传递:
示例,创建一个名为 Student 的类,它将继承 Person 类的属性和方法:
class Student(Person):
pass
注意: 当您不希望向类添加任何其他属性或方法时,请使用 pass 关键字。
现在,Student 类具有与 Person 类相同的属性和方法。
示例,使用 Student 类创建一个对象,然后执行 printname 方法:
x = Student("Mike", "Olsen")
x.printname()
添加 init() 函数
到目前为止,我们已经创建了一个从父类继承属性和方法的子类。我们希望在子类中添加 init() 函数(而不是使用 pass 关键字)。
注意: 每次使用类创建新对象时,都会自动调用 init() 函数。
示例,向 Student 类添加 init() 函数:
class Student(Person):
def __init__(self, fname, lname):
# 添加属性等
当您添加 init() 函数时,子类将不再继承父类的 init() 函数。
注意: 子类的 init() 函数会覆盖父类的 init() 函数的继承。
要保留父类的 init() 函数的继承,将调用父类的 init() 函数:
示例:
class Student(Person):
def __init__(self, fname, lname):
Person.__init__(self, fname, lname)
现在,我们已成功添加了 init() 函数,并保留了父类的继承,并准备在 init() 函数中添加功能。
使用 super() 函数
Python 还具有 super() 函数,可以使子类继承其父类的所有方法和属性:
示例:
class Student(Person):
def __init__(self, fname, lname):
super().__init__(fname, lname)
通过使用 super() 函数,您无需使用父元素的名称,它将自动继承其父元素的方法和属性。
示例,向 Student 类添加一个名为 graduationyear 的属性:
class Student(Person):
def __init__(self, fname, lname):
super().__init__(fname, lname)
self.graduationyear = 2019
在下面的示例中,2019 年应该是一个变量,并且在创建学生对象时传递给 Student 类。要实现这一点,请在 init() 函数中添加另一个参数:
示例,添加一个 year 参数,并在创建对象时传递正确的年份:
class Student(Person):
def __init__(self, fname, lname, year):
super().__init__(fname, lname)
self.graduationyear = year
x = Student("Mike", "Olsen", 2019)
添加方法
示例,向 Student 类添加一个名为 welcome 的方法:
class Student(Person):
def __init__(self, fname, lname, year):
super().__init__(fname, lname)
self.graduationyear = year
def welcome(self):
print("Welcome", self.firstname, self.lastname, "to the class of", self.graduationyear)
原创声明:本文系作者授权腾讯云开发者社区发表,未经许可,不得转载。
如有侵权,请联系 cloudcommunity@tencent.com 删除。
原创声明:本文系作者授权腾讯云开发者社区发表,未经许可,不得转载。
如有侵权,请联系 cloudcommunity@tencent.com 删除。