标签:对象 from mod int 属性 prompt tee method tuple
正常情况下,当我们定义了一个class,创建了一个class的实例后,我们可以给该实例绑定任何属性和方法。
class Student(object):
pass
>>> s = Student() >>> s.name = ‘Michael‘ # 动态给实例绑定一个属性 >>> print(s.name) Michael
>>> def set_age(self, age): # 定义一个函数作为实例方法 ... self.age = age ... >>> from types import MethodType >>> s.set_age = MethodType(set_age, s) # 给实例绑定一个方法 >>> s.set_age(25) # 调用实例方法 >>> s.age # 测试结果 25
>>> s2 = Student() # 创建新的实例 >>> s2.set_age(25) # 尝试调用方法 Traceback (most recent call last): File "<stdin>", line 1, in <module> AttributeError: ‘Student‘ object has no attribute ‘set_age‘
>>> def set_score(self, score): ... self.score = score ... >>> Student.set_score = set_score
>>> s.set_score(100)
>>> s.score
100
>>> s2.set_score(99)
>>> s2.score
99
如果想在定义类的时候,限制类的实例能添加的属性,可以在定义class的时候,定义一个特殊的__slots__变量,来限制。
class Student(object): __slots__ = (‘name‘, ‘age‘) # 用tuple定义允许绑定的属性名称,name和age
然后,可以试试
>>> s = Student() # 创建新的实例 >>> s.name = ‘Michael‘ # 绑定属性‘name‘ >>> s.age = 25 # 绑定属性‘age‘ >>> s.score = 99 # 绑定属性‘score‘ Traceback (most recent call last): File "<stdin>", line 1, in <module> AttributeError: ‘Student‘ object has no attribute ‘score‘
由于‘score‘
没有被放到__slots__
中,所以不能绑定score
属性,试图绑定score
将得到AttributeError
的错误。
注意事项:__slots__
定义的属性仅对当前类实例起作用,对继承的子类是不起作用的。
【Python学习之七】面向对象高级编程——__slots__的使用
标签:对象 from mod int 属性 prompt tee method tuple
原文地址:https://www.cnblogs.com/cjvae/p/9319882.html