slots魔法方法
slots魔法方法能限制类添加的属性
**注意:**slots魔法方法定义的属性仅对当前类实例起作用,对继承的子类是无效的
class Person(object):
__slots__ = ("name")
P = Person()
p.name = '老王'
p.age = 18
# 如果出现线之外的属性,会报错
AttributeErrorTraceback (most recent call last)
<ipython-input-4-be498542a0d5> in <module>()
----> 1 p.age = 18