使用slots
正常情況下豆混,當我們定義了一個class辣吃,創(chuàng)建了一個class的實例后,我們可以給該實例綁定任何屬性和方法蒿叠,這就是動態(tài)語言的靈活性。
class Student(object):
pass
還可以嘗試給實例綁定一個方法:
>>> def set_age(self, age): # 定義一個函數(shù)作為實例方法
... self.age = age
...
>>> from types import MethodType
>>> s.set_age = MethodType(set_age, s) # 給實例綁定一個方法
>>> s.set_age(25) # 調(diào)用實例方法
>>> s.age # 測試結(jié)果
25
但是蚣常,給一個實例綁定的方法市咽,對另一個實例是不起作用的:
>>> s2 = Student() # 創(chuàng)建新的實例
>>> s2.set_age(25) # 嘗試調(diào)用方法
Traceback (most recent call last):
File "<stdin>", line 1, in <module>
AttributeError: 'Student' object has no attribute 'set_age'
為了給所有實例都綁定方法,可以給class綁定方法:
>>> def set_score(self, score):
... self.score = score
...
>>> Student.set_score = set_score
給class綁定方法后抵蚊,所有實例均可調(diào)用:
>>> s.set_score(100)
>>> s.score
100
>>> s2.set_score(99)
>>> s2.score
99
通常情況下施绎,上面的set_score
方法可以直接定義在class中,但動態(tài)綁定允許我們在程序運行的過程中動態(tài)給class加上功能贞绳,這在靜態(tài)語言中很難實現(xiàn)谷醉。
但是,如果我們想要限制實例的屬性怎么辦冈闭?比如俱尼,只允許對Student實例添加name
和age
屬性。
為了達到限制的目的萎攒,Python允許在定義class的時候遇八,定義一個特殊的__slots__
變量,來限制該class實例能添加的屬性:
class Student(object):
__slots__ = ('name', 'age') # 用tuple定義允許綁定的屬性名稱
>>> s = Student() # 創(chuàng)建新的實例
>>> 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__
定義的屬性僅對當前類實例起作用羊精,對繼承的子類是不起作用的
使用@property
Python內(nèi)置的@property
(性能)裝飾器就是負責把一個方法變成屬性調(diào)用的斯够。
class Student(object):
@property
def score(self):
return self._score # 一定要在score前面加下劃線 否則會出現(xiàn)下面情況
@score.setter
def score(self,value):
if not isinstance(value,int):
raise ValueError('score must be a integer!')
if value < 0 or value > 100:
raise ValueError('score must beween 0 ~ 100!')
self._score = value
>>> s = Student()
>>> s.score = 60
Traceback (most recent call last):
File "<pyshell#80>", line 1, in <module>
s.score = 60
File "C:\Python36x32bit\practice.py", line 13, in score
self.score = value
File "C:\Python36x32bit\practice.py", line 13, in score
self.score = value
File "C:\Python36x32bit\practice.py", line 13, in score
self.score = value
[Previous line repeated 492 more times]
File "C:\Python36x32bit\practice.py", line 11, in score
if value < 0 or value > 100:
RecursionError: maximum recursion depth exceeded in comparison
注釋:
-
self.
是對屬性的訪問,使用它的時候編譯器會判斷_
是否為空喧锦,為空的話自動實例化读规。會自動訪問get
和set
方法。 -
_
是對實例變量的訪問裸违,我們沒有實例化它掖桦,不能使用。 - 對類里局部變量訪問使用
_
供汛,外部變量則用self.
。 - 在
getter
方法中涌穆,不要再使用self
怔昨。否則會重復調(diào)用getter
方法,造成死循環(huán)宿稀。
正常情況下趁舀,把一個getter方法變成屬性,只需要加上@property就可以了祝沸,此時矮烹,@property本身又創(chuàng)建了另一個裝飾器@score.setter越庇,負責把一個setter方法變成屬性賦值,于是奉狈,我們就擁有一個可控的屬性操作:
>>> s = Student()
>>> s.score = 60 # OK卤唉,實際轉(zhuǎn)化為s.set_score(60)
>>> s.score # OK,實際轉(zhuǎn)化為s.get_score()
60
>>> s.score = 9999
Traceback (most recent call last):
...
ValueError: score must between 0 ~ 100!
還可以定義只讀屬性仁期,只定義getter方法桑驱,不定義sette方法就是一個只讀屬性:
class Student(object):
@property
def birth(self):
return self._birth
@birth.setter
def birth(self,value): #可讀寫屬性
self._birth = value
@property
def age(self): #只讀屬性, 因為age可以根據(jù)birth和當前時間計算出來
return 2018 - self._birth
>>> s = Student()
>>> s.birth = 1995
>>> s.age
23
>>> s.age = 24
Traceback (most recent call last):
File "<pyshell#90>", line 1, in <module>
s.age = 24
AttributeError: can't set attribute