python使用UnboundMethodType修改類方法

from types import UnboundMethodType class class1(object): def fun1(self): print 'fun1' oldfun1 = class1.fun1 def fun1new(self): print 'fun1new' return oldfun1(self) class1.
相關文章
相關標籤/搜索