文章摘要:python中如何动态给对象绑定函数 python动态绑定方法
python中将函数动态绑定到对象,具体方法如下: import type class Test(object […]
python中将函数动态绑定到对象,具体方法如下:
import type
class Test(object):
pass
t=Test()
def eat(self):
print(“eat”)
t.eat = types.MethodType(eat,p1)
文章摘要:python中如何动态给对象绑定函数 python动态绑定方法
python中将函数动态绑定到对象,具体方法如下: import type class Test(object […]
python中将函数动态绑定到对象,具体方法如下:
import type
class Test(object):
pass
t=Test()
def eat(self):
print(“eat”)
t.eat = types.MethodType(eat,p1)