python 使用MethodType绑定方法到类
问题引出
先看下面一段代码:
from types import MethodType
def set_age(self,age):
self.age=age
class Stu(object):
pass
Stu.set_age=MethodType(set_age,Stu)
A=Stu()
B=Stu()
A.set_age(10)
B.set_age(15)
print(
原创
2016-09-30 10:21:30 ·
6526 阅读 ·
2 评论