我想从子类中更改父类中的方法。
示例:
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!
。我可以从子类动态地为父类分配一个方法吗?也许是我可以使用的模式吗?
不幸的是,我无法更改父类。