python继承super
时间: 2023-11-09 18:01:09 浏览: 81
【Python】使用super()函数进行类的继承,将父类的方法和属性继承在子类的里。
在 Python 中,super() 函数用于调用父类(超类)的一个方法。它返回一个临时对象,该对象绑定了一个方法,这个方法可以调用父类中的方法。
使用 super() 函数的一般形式如下:
```python
class ChildClass(ParentClass):
def some_method(self):
super().some_method()
```
其中,ChildClass 是子类,ParentClass 是父类,some_method() 是子类中的方法,super() 函数返回的临时对象调用了父类中的 some_method() 方法。
super() 函数的作用是避免直接使用父类名字的硬编码方式,这样可以使代码更加灵活、可读性更好。
阅读全文