您好,登錄后才能下訂單哦!
本文實例講述了Python中@property的理解和使用。分享給大家供大家參考,具體如下:
重看狗書,看到對User表定義的時候有下面兩行
@property def password(self): raise AttributeError('password is not a readable attribute') @password.setter def password(self, password): self.password_hash = generate_password_hash(password)
遂重溫下這個property的使用
在我們定義數(shù)據(jù)庫字段類的時候,往往需要對其中的類屬性做一些限制,一般用get和set方法來寫,那在python中,我們該怎么做能夠少寫代碼,又能優(yōu)雅的實現(xiàn)想要的限制,減少錯誤的發(fā)生呢,這時候就需要我們的@property
閃亮登場啦,巴拉巴拉能量……..
用代碼來舉例子更容易理解,比如一個學生成績表定義成這樣
class Student(object): def get_score(self): return self._score def set_score(self, value): if not isinstance(value, int): raise ValueError('score must be an integer!') if value < 0 or value > 100: raise ValueError('score must between 0 ~ 100!') self._score = value
我們調(diào)用的時候需要這么調(diào)用:
>>> s = Student() >>> s.set_score(60) # ok! >>> s.get_score() 60 >>> s.set_score(9999) Traceback (most recent call last): ... ValueError: score must between 0 ~ 100!
但是為了方便,節(jié)省時間,我們不想寫s.set_score(9999)
啊,直接寫s.score = 9999
不是更快么,加了方法做限制不能讓調(diào)用的時候變麻煩啊,@property
快來幫忙….
class Student(object): @property def score(self): return self._score @score.setter def score(self,value): if not isinstance(value, int): raise ValueError('分數(shù)必須是整數(shù)才行吶') if value < 0 or value > 100: raise ValueError('分數(shù)必須0-100之間') self._score = value
看上面代碼可知,把get
方法變?yōu)閷傩灾恍枰由?code>@property裝飾器即可,此時@property
本身又會創(chuàng)建另外一個裝飾器@score.setter
,負責把set
方法變成給屬性賦值,這么做完后,我們調(diào)用起來既可控又方便
>>> 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!
更多關(guān)于Python相關(guān)內(nèi)容可查看本站專題:《Python數(shù)據(jù)結(jié)構(gòu)與算法教程》、《Python Socket編程技巧總結(jié)》、《Python函數(shù)使用技巧總結(jié)》、《Python字符串操作技巧匯總》及《Python入門與進階經(jīng)典教程》
希望本文所述對大家Python程序設(shè)計有所幫助。
免責聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點不代表本網(wǎng)站立場,如果涉及侵權(quán)請聯(lián)系站長郵箱:is@yisu.com進行舉報,并提供相關(guān)證據(jù),一經(jīng)查實,將立刻刪除涉嫌侵權(quán)內(nèi)容。