从子类更改父类中的方法

时间:2019-05-07 06:48:12

标签: python oop inheritance

我想从子类中更改父类中的方法。

示例:

class parent: 
    def a(self): 
        self.b()

    def b(self): 
        print("parent here!")

class child(parent): 
    def b(self):
        print("child here!")

如果我从父实例调用a,则将打印parent here!。我希望它打印child here!。我可以从子类动态地为父类分配一个方法吗?也许是我可以使用的模式吗?

不幸的是,我无法更改父类。

0 个答案:

没有答案