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方法