python子类调用父类的方法是什么

53次阅读
没有评论

共计 450 个字符,预计需要花费 2 分钟才能阅读完成。

在 Python 中,子类可以通过使用 super() 函数来调用父类的方法。super()函数返回一个临时对象,该对象允许你调用父类的方法。你可以通过在子类中使用 super() 函数来调用父类的方法,并提供必要的参数。

下面是一个示例:

class ParentClass:
    def __init__(self):
        self.name = "Parent"

    def say_hello(self):
        print("Hello from Parent")

class ChildClass(ParentClass):
    def __init__(self):
        super().__init__()
        self.age = 10

    def say_hello(self):
        super().say_hello()  # 调用父类的 say_hello 方法
        print("Hello from Child")

child = ChildClass()
child.say_hello()

输出结果为:

Hello from Parent
Hello from Child

丸趣 TV 网 – 提供最优质的资源集合!

正文完
 
丸趣
版权声明:本站原创文章,由 丸趣 2023-12-13发表,共计450字。
转载说明:除特殊说明外本站除技术相关以外文章皆由网络搜集发布,转载请注明出处。
评论(没有评论)