标签:添加 允许 父类 python3 子类 pre code student slot
Python允许在定义class的时候,定义一个特殊的__slots__
变量,来限制该class实例能添加的属性:
class Student(object): __slots__ = (‘name‘, ‘age‘) # 用tuple定义允许绑定的属性名称
如果子类中也定义__slots__
,那么,子类实例允许定义的属性就是自身的__slots__
加上父类的__slots__
标签:添加 允许 父类 python3 子类 pre code student slot
原文地址:http://www.cnblogs.com/GYoungBean/p/6281459.html