python——多继承下的调用优先级

本文探讨了一个Python编程示例,child类继承自Father和Mother类,当没有定义自己的sing方法时,如何根据MRO调用父类的sing。重点讲解了多重继承和方法解析顺序(__mro__)在实践中的应用。

摘要生成于 C知道 ,由 DeepSeek-R1 满血版支持, 前往体验 >

class Father:
def sing(self):
print('Father sing')
class Mother:
def sing(self):
print('Mother sing')
class child(Father,Mother):
pass
# def sing(self):
# print('child sing')
if __name__ == '__main__':
tom = child()
tom.sing()
print(child.__mro__)

------------

结果:

Father sing

(<class '__main__.child'>, <class '__main__.Father'>, <class '__main__.Mother'>, <class 'object'>)

child子类同时继承了Father,Mother,GradeFather,GradeMother四个父类

如果父类有同样的方法sing,child去调用sing方法时,会按照调用优先级去调用到sing方法,

使用child.__mro__可以查看方法调用优先级,可以看到优先级是child->Father->Mother

故child类没有sing方法时,会去Father查找调用sing方法

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值