from types import MethodType
MethodType(函数方法,实例,实例所属类)
实例
1.给实例绑定方法
class Student(object):
pass
s=Student()
from types import MethodType
s.set_age=MethodType(set_age,s,Student)`注意参数设置`
s.set_age(25)
s.age
>>>25
2.给类绑定方法
class Student(object):
pass
from types import MethodType
Student.set_age=MethodType(set_age,None,Student)
`也可写作:Student.set_age=MethodType(set_age,Student)`
s1=Student()
s1.set_age(23)
s1.age
>>>23
s2=Student()
s2.set_age(25)
s2.age
>>>25