在 Python 3 中,我使用来自继承类的 super ,如下所示:
class Orange(Fruit):
def __init__(self):
super().__init__()
在上面的代码片段中,Orange
类继承自Fruit
类。看看父类
class Fruit():
def __init__(self):
pass # call super().__init__() here?
我们是否需要从父类/基类调用 super 才能使 MRO 有效工作?