共计 501 个字符,预计需要花费 2 分钟才能阅读完成。
在 Python 中,可以使用 super()
函数来调用父类的构造函数。通过 super()
函数,可以获得父类的对象,并调用父类的方法。在子类的构造函数中,可以使用 super().__init__()
来调用父类的构造函数。示例代码如下:
class ParentClass:
def __init__(self, arg1, arg2):
self.arg1 = arg1
self.arg2 = arg2
class ChildClass(ParentClass):
def __init__(self, arg1, arg2, arg3):
super().__init__(arg1, arg2)
self.arg3 = arg3
child = ChildClass(arg1_value, arg2_value, arg3_value)
在上述示例中,ChildClass
继承自 ParentClass
。在ChildClass
的构造函数中,通过 super().__init__(arg1, arg2)
调用了 ParentClass
的构造函数,并传入所需的参数。这样可以保证在创建 ChildClass
对象时,父类的构造函数也会被调用。
丸趣 TV 网 – 提供最优质的资源集合!
正文完