共计 572 个字符,预计需要花费 2 分钟才能阅读完成。
在 Python 中,可以使用 super()
函数来调用父类的方法。super()
函数返回一个临时对象,该对象可以用于调用父类的方法。
以下是一个示例:
class ParentClass:
def __init__(self):
print("父类的初始化方法")
def some_method(self):
print("父类的方法")
class ChildClass(ParentClass):
def __init__(self):
super().__init__() # 调用父类的初始化方法
def some_method(self):
super().some_method() # 调用父类的方法
print("子类的方法")
child = ChildClass()
# 输出:# 父类的初始化方法
child.some_method()
# 输出:# 父类的方法
# 子类的方法
在上面的示例中,ChildClass
继承自 ParentClass
。在ChildClass
的__init__
方法中,可以使用 super().__init__()
来调用父类 ParentClass
的__init__
方法。在 ChildClass
的some_method
方法中,可以使用 super().some_method()
来调用父类 ParentClass
的some_method
方法。
丸趣 TV 网 – 提供最优质的资源集合!
正文完