from types import MethodType
class Student:
pass
class Teacher:
__slots__ = ('name', 'age') # 用tuple定义允许绑定的属性名称
pass
def set_age(self, age):
self.age = age
def set_score(self, score):
self.score = score
if __name__ == '__main__':
s = Student()
s.name = 'Michael' # 动态给实例绑定一个属性
print(s.name)
s.set_age = MethodType(set_age, s)
s.set_age(25)
print(s.age)
# 给一个实例绑定的方法,对另一个实例是不起作用的,为了给所有实例都绑定方法,可以给class绑定方法
Student.set_score = set_score
s.set_score(100)
print(s.score)
s2 = Student()
s2.set_score(99)
print(s2.score)
# 通常情况下,上面的set_score方法可以直接定义在class中,但动态绑定允许我们在程序运行的过程中动态给class加上功能,这在静态语言中很难实现。
t = Teacher()
t.name = 'Maria'
t.age = 25
t.score = 99
# 由于'score'没有被放到__slots__中,所以不能绑定score属性,试图绑定score将得到AttributeError的错误。
# 使用__slots__要注意,__slots__定义的属性仅对当前类实例起作用,对继承的子类是不起作用的
运行结果:
Michael
25
100
Traceback (most recent call last):
99
File "/Users/pengshengbo01/baidu/python-learn/Advanced_Features.py", line 42, in <module>
t.score = 99
AttributeError: 'Teacher' object has no attribute 'score'