python语言中多继承中super调用所有父类的方法以及要用到的MRO顺序

Posted Awor

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了python语言中多继承中super调用所有父类的方法以及要用到的MRO顺序相关的知识,希望对你有一定的参考价值。

  在python多继承中,利用super().父类方法,可以调用所有父类,从而在重写的状态下,再次对所有父类的调用!

例:

print("******多继承使用super().__init__ 发生的状态******")
class Parent(object):
    def __init__(self, name, *args, **kwargs):  # 为避免多继承报错,使用不定长参数,接受参数
        print(‘parent的init开始被调用‘)
        self.name = name
        print(‘parent的init结束被调用‘)

class Son1(Parent):
    def __init__(self, name, age, *args, **kwargs):  # 为避免多继承报错,使用不定长参数,接受参数
        print(‘Son1的init开始被调用‘)
        self.age = age
        super().__init__(name, *args, **kwargs)  # 为避免多继承报错,使用不定长参数,接受参数
        print(‘Son1的init结束被调用‘)

class Son2(Parent):
    def __init__(self, name, gender, *args, **kwargs):  # 为避免多继承报错,使用不定长参数,接受参数
        print(‘Son2的init开始被调用‘)
        self.gender = gender
        super().__init__(name, *args, **kwargs)  # 为避免多继承报错,使用不定长参数,接受参数
        print(‘Son2的init结束被调用‘)

class Grandson(Son1, Son2):
    def __init__(self, name, age, gender):
        print(‘Grandson的init开始被调用‘)
        # 多继承时,相对于使用类名.__init__方法,要把每个父类全部写一遍
        # 而super只用一句话,执行了全部父类的方法,这也是为何多继承需要全部传参的一个原因
        # super(Grandson, self).__init__(name, age, gender)
        super().__init__(name, age, gender)
        print(‘Grandson的init结束被调用‘)

print(Grandson.__mro__)
#利用
.__mro__方法查询super在多继承中调用父类的顺序
gs = Grandson(‘grandson‘, 12, ‘男‘) print(‘姓名:‘, gs.name) print(‘年龄:‘, gs.age) print(‘性别:‘, gs.gender) print("******多继承使用super().__init__ 发生的状态******

")




运行结果:
******多继承使用super().__init__ 发生的状态******
(<class ‘__main__.Grandson‘>, <class ‘__main__.Son1‘>, <class ‘__main__.Son2‘>, <class ‘__main__.Parent‘>, <class ‘object‘>)
Grandson的init开始被调用
Son1的init开始被调用
Son2的init开始被调用
parent的init开始被调用
parent的init结束被调用
Son2的init结束被调用
Son1的init结束被调用
Grandson的init结束被调用
姓名: grandson
年龄: 12
性别: 男
******多继承使用super().__init__ 发生的状态******
 







以上是关于python语言中多继承中super调用所有父类的方法以及要用到的MRO顺序的主要内容,如果未能解决你的问题,请参考以下文章

python继承

python 继承

说说 Python 的继承

Python进阶-继承中的MRO与super

Python_12 多继承与多态

JAVA中,子类将继承父类的所有属性和方法吗?为啥?