码迷,mamicode.com
首页 > 编程语言 > 详细

python限定类属性的类属性:__slots__

时间:2018-11-25 23:56:50      阅读:220      评论:0      收藏:0      [点我收藏+]

标签:error:   ror   属性   gif   ini   动态语言   att   使用   图片   

__slots__
由于Python是动态语言,任何实例在运行期都可以动态地添加属性。

如果要限制添加的属性,例如,Student类只允许添加 name、gender和score 这3个属性,就可以利用Python的一个特殊的__slots__来实现。

顾名思义,__slots__是指一个类允许的属性列表:

class Student(object):
    __slots__ = (‘name‘, ‘gender‘, ‘score‘)
    def __init__(self, name, gender, score):
        self.name = name
        self.gender = gender
        self.score = score
现在,对实例进行操作:

>>> s = Student(‘Bob‘, ‘male‘, 59)
>>> s.name = ‘Tim‘ # OK
>>> s.score = 99 # OK
>>> s.grade = ‘A‘
Traceback (most recent call last):
  ...
AttributeError: ‘Student‘ object has no attribute ‘grade‘
__slots__的目的是限制当前类所能拥有的属性,如果不需要添加任意动态的属性,使用__slots__也能节省内存。
技术分享图片

 

技术分享图片
class Person(object):

    __slots__ = (‘name‘, ‘gender‘)

    def __init__(self, name, gender):
        self.name = name
        self.gender = gender

class Student(Person):

    __slots__ = (‘score‘,)

    def __init__(self,name,gender,score):
        super(Student,self).__init__(name,gender)
        self.score=score

s = Student(‘Bob‘, ‘male‘, 59)
s.name = ‘Tim‘
s.score = 99
print s.score

python限定类属性的类属性:__slots__

标签:error:   ror   属性   gif   ini   动态语言   att   使用   图片   

原文地址:https://www.cnblogs.com/wdbgqq/p/10017566.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!