溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊(cè)×
其他方式登錄
點(diǎn)擊 登錄注冊(cè) 即表示同意《億速云用戶服務(wù)條款》

裝飾器 使用@property

發(fā)布時(shí)間:2020-07-31 22:19:22 來(lái)源:網(wǎng)絡(luò) 閱讀:446 作者:alvazhao 欄目:編程語(yǔ)言

轉(zhuǎn)載:https://www.liaoxuefeng.com/wiki/0014316089557264a6b348958f449949df42a6d3a2e542c000/00143186781871161bc8d6497004764b398401a401d4cce000

@property@XXX.setter
br/>@XXX.setter

僅使用@property,設(shè)置一個(gè)只讀屬性

class Student(object):

    @property
    def score(self):
        return self._score

    @score.setter
    def 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

使用@property后,調(diào)用函數(shù)變?yōu)楹瘮?shù)名稱的屬性賦值、讀取

s.score = 60 # OK,實(shí)際轉(zhuǎn)化為s.set_score(60)
s.score # OK,實(shí)際轉(zhuǎn)化為s.get_score()
向AI問(wèn)一下細(xì)節(jié)

免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點(diǎn)不代表本網(wǎng)站立場(chǎng),如果涉及侵權(quán)請(qǐng)聯(lián)系站長(zhǎng)郵箱:is@yisu.com進(jìn)行舉報(bào),并提供相關(guān)證據(jù),一經(jīng)查實(shí),將立刻刪除涉嫌侵權(quán)內(nèi)容。

AI