替换实例方法的最佳实践

import types

class People:
    def speak(self):
        print("hello, world")


def speak(self):
    print("hello, python")

p = People()
p.speak = types.MethodType(speak, p)
p.speak()
# hello, python

 

posted @ 2023-07-05 17:36  你说夕阳很美  阅读(30)  评论(0)    收藏  举报