欧美bbbwbbbw肥妇,免费乱码人妻系列日韩,一级黄片

python 中的@property的用法詳解

 更新時(shí)間:2022年06月22日 15:33:17   作者:lbaihao  
這篇文章主要介紹了python @property的用法,簡(jiǎn)單地說(shuō)就是一個(gè)類里面的方法一旦被@property裝飾,就可以像調(diào)用屬性一樣地去調(diào)用這個(gè)方法,它能夠簡(jiǎn)化調(diào)用者獲取數(shù)據(jù)的流程,感興趣的朋友跟隨小編一起看看吧

1.什么是property

簡(jiǎn)單地說(shuō)就是一個(gè)類里面的方法一旦被@property裝飾,就可以像調(diào)用屬性一樣地去調(diào)用這個(gè)方法,它能夠簡(jiǎn)化調(diào)用者獲取數(shù)據(jù)的流程,而且不用擔(dān)心將屬性暴露出來(lái),有人對(duì)其進(jìn)行賦值操作(避免使用者的不合理操作)。需要注意的兩點(diǎn)是

  • 調(diào)用被裝飾方法的時(shí)候是不用加括號(hào)的
  • 方法定義的時(shí)候有且只能有self一個(gè)參數(shù)
>>> class Goods():
        def __init__(self,unit_price,weight):
            self.unit_price = unit_price
            self.weight = weight
        @property
        def price(self):
            return self.unit_price * self.weight
>>> lemons = Goods(7,4)
>>>
>>> lemons.price
28

上面通過(guò)調(diào)用屬性的方式直接調(diào)用到 price 方法,property把復(fù)雜的處理過(guò)程封裝到了方法里面去,取值的時(shí)候調(diào)用相應(yīng)的方法名即可。

2.property屬性定義的兩種方式

A、裝飾器方式

在類的方法上應(yīng)用@property裝飾器,即上面那種方式。

B、類屬性方式

創(chuàng)建一個(gè)實(shí)例對(duì)象賦值給類屬性

>>> class Lemons():
        def __init__(self,unit_price=7):
            self.unit_price = unit_price
        def get_unit_price(self):
            return self.unit_price
        def set_unit_price(self,new_unit_price):
            self.unit_price = new_unit_price
        def del_unit_price(self):
            del self.unit_price
        x = property(get_unit_price, set_unit_price, del_unit_price)
>>> fruit = Lemons()
>>> 
>>> fruit.x                         #調(diào)用 fruit.x 觸發(fā) get_unit_price
7
>>> 
>>> fruit.x = 9                     #調(diào)用 fruit.x = 9 觸發(fā) set_unit_price
>>> 
>>> fruit.x
9
>>> 
>>> fruit.unit_price                #調(diào)用 fruit.unit_price 觸發(fā) get_unit_price
9
>>> del fruit.x                     #調(diào)用 del fruit.x 觸發(fā) del_unit_price 
>>> 
>>> fruit.unit_price
Traceback (most recent call last):
  File "<pyshell#23>", line 1, in <module>
    l.unit_price
AttributeError: 'Lemons' object has no attribute 'unit_price'

property方法可以接收四個(gè)參數(shù)

  • 第一個(gè)參數(shù)是獲得屬性的方法名,調(diào)用 對(duì)象.屬性時(shí)自動(dòng)觸發(fā)
  • 第二個(gè)參數(shù)是設(shè)置屬性的方法名, 給屬性賦值時(shí)自動(dòng)觸發(fā)
  • 第三個(gè)參數(shù)是刪除屬性的方法名,刪除屬性時(shí)自動(dòng)觸發(fā)
  • 第四個(gè)參數(shù)是字符串,是屬性的描述文檔,調(diào)用對(duì)象.屬性.doc時(shí)觸發(fā)

3.用property代替getter和setter方法

>>>class Watermelon():
       def __init__(self,price):
           self._price = price                  #私有屬性,外部無(wú)法修改和訪問(wèn)
 
       def get_price(self):
           return self._price
 
       def set_price(self,new_price):
           if new_price > 0:
               self._price = new_price
           else:
               raise 'error:價(jià)格必須大于零'

用property代替getter和setter

>>>class Watermelon():
       def __init__(self,price):
           self._price = price
       @property                          #使用@property裝飾price方法
       def price(self):
           return self._price
       @price.setter                      #使用@property裝飾方法,當(dāng)對(duì)price賦值時(shí),調(diào)用裝飾方法
       def price(self,new_price):
           if new_price > 0:
               self._price = new_price
           else:
               raise 'error:價(jià)格必須大于零'
>>> watermelon = Watermelon(4)
>>> 
>>> watermelon.price
4
>>> 
>>> watermelon.price = 7
>>> 
>>> watermelon.price
7

到此這篇關(guān)于python @property的用法的文章就介紹到這了,更多相關(guān)python @property的用法內(nèi)容請(qǐng)搜索腳本之家以前的文章或繼續(xù)瀏覽下面的相關(guān)文章希望大家以后多多支持腳本之家!

相關(guān)文章

  • 淺析對(duì)torch.unsqueeze()函數(shù)理解

    淺析對(duì)torch.unsqueeze()函數(shù)理解

    torch.unsqueeze()函數(shù)起到升維的作用,dim等于幾表示在第幾維度加一,這篇文章主要介紹了對(duì)torch.unsqueeze()函數(shù)理解深度解析,感興趣的朋友跟隨小編一起看看吧
    2024-06-06
  • python?numpy.linalg.norm函數(shù)的使用及說(shuō)明

    python?numpy.linalg.norm函數(shù)的使用及說(shuō)明

    這篇文章主要介紹了python?numpy.linalg.norm函數(shù)的使用及說(shuō)明,具有很好的參考價(jià)值,希望對(duì)大家有所幫助。如有錯(cuò)誤或未考慮完全的地方,望不吝賜教
    2023-02-02
  • python簡(jiǎn)單的函數(shù)定義和用法實(shí)例

    python簡(jiǎn)單的函數(shù)定義和用法實(shí)例

    這篇文章主要介紹了python簡(jiǎn)單的函數(shù)定義和用法,實(shí)例分析了Python自定義函數(shù)及其使用方法,具有一定參考借鑒價(jià)值,需要的朋友可以參考下
    2015-05-05
  • Windows+Anaconda3+PyTorch+PyCharm的安裝教程圖文詳解

    Windows+Anaconda3+PyTorch+PyCharm的安裝教程圖文詳解

    這篇文章主要介紹了Windows+Anaconda3+PyTorch+PyCharm的安裝教程,本文通過(guò)圖文并茂的形式給大家介紹的非常詳細(xì),對(duì)大家的學(xué)習(xí)或工作具有一定的參考借鑒價(jià)值,需要的朋友可以參考下
    2020-04-04
  • Python必考的5道面試題集合

    Python必考的5道面試題集合

    這篇文章介紹了Python必考的5道面試題,文中通過(guò)示例代碼介紹的非常詳細(xì)。對(duì)大家的學(xué)習(xí)或工作具有一定的參考借鑒價(jià)值,需要的朋友可以參考下
    2022-07-07
  • 使用Python開發(fā)Telegram?Bot的流程步驟

    使用Python開發(fā)Telegram?Bot的流程步驟

    Telegram?Bot?是一種可以與用戶交互的機(jī)器人應(yīng)用程序,通過(guò)?Telegram?的?Bot?API?與服務(wù)器通信,它可以用來(lái)處理消息、執(zhí)行命令、提供服務(wù),如通知提醒、數(shù)據(jù)查詢和自動(dòng)化任務(wù)等,本文給大家介紹了如何用?Python?開發(fā)一個(gè)?Telegram?Bot,需要的朋友可以參考下
    2025-01-01
  • 在Python中存儲(chǔ)字符串

    在Python中存儲(chǔ)字符串

    這篇文章主要介紹了在Python中存儲(chǔ)字符串,文章通過(guò)unicode展開主題相關(guān)內(nèi)容,具有一定的參考價(jià)值,需要的小伙伴可以參考一下
    2022-05-05
  • python源文件的字符編碼知識(shí)點(diǎn)詳解

    python源文件的字符編碼知識(shí)點(diǎn)詳解

    在本篇文章里小編給大家整理的是一篇關(guān)于python源文件的字符編碼知識(shí)點(diǎn)詳解,有興趣的朋友們可以學(xué)習(xí)下。
    2021-03-03
  • python使用flask與js進(jìn)行前后臺(tái)交互的例子

    python使用flask與js進(jìn)行前后臺(tái)交互的例子

    今天小編就為大家分享一篇python使用flask與js進(jìn)行前后臺(tái)交互的例子,具有很好的參考價(jià)值,希望對(duì)大家有所幫助。一起跟隨小編過(guò)來(lái)看看吧
    2019-07-07
  • python xml模塊的簡(jiǎn)單使用

    python xml模塊的簡(jiǎn)單使用

    這篇文章主要介紹了python xml模塊的簡(jiǎn)單使用,幫助大家更好的理解和學(xué)習(xí)使用python,感興趣的朋友可以了解下
    2021-03-03

最新評(píng)論