首頁 > 軟體

Python property裝飾器使用案例介紹

2022-10-14 14:01:42

1.property

裝飾器:裝飾器是在不修改被裝飾物件原始碼以及呼叫方式的前提下為被裝飾物件新增新功能的可呼叫物件

property是一個裝飾器,是用來繫結給物件的方法偽造成一個資料屬性

裝飾器property,可以將類中的函數“偽裝成”物件的資料屬性,物件在存取該特殊屬性時會觸發功能的執行,然後將返回值作為本次存取的結果。

使用property有效地保證了屬性存取的一致性。另外property還提供設定和刪除屬性的功能

應用場景:有的功能屬性聽起來更像資料屬性,python則提供了一種裝飾器,可以將功能屬性偽裝成資料屬性

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

A、裝飾器方式

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

B、類屬性方式

建立一個範例物件賦值給類屬性

>>> 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                         #呼叫 fruit.x 觸發 get_unit_price
7
>>> 
>>> fruit.x = 9                     #呼叫 fruit.x = 9 觸發 set_unit_price
>>> 
>>> fruit.x
9
>>> 
>>> fruit.unit_price                #呼叫 fruit.unit_price 觸發 get_unit_price
9
>>> del fruit.x                     #呼叫 del fruit.x 觸發 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方法可以接收四個引數

  • 第一個引數是獲得屬性的方法名,呼叫 物件.屬性時自動觸發
  • 第二個引數是設定屬性的方法名, 給屬性賦值時自動觸發
  • 第三個引數是刪除屬性的方法名,刪除屬性時自動觸發
  • 第四個引數是字串,是屬性的描述檔案,呼叫物件.屬性.doc時觸發

3.案例

"""
成人的BMI數值:
過輕:低於18.5
正常:18.5-23.9
過重:24-27
肥胖:28-32
非常肥胖, 高於32
  體質指數(BMI)=體重(kg)÷身高^2(m)
  EX:70kg÷(1.75×1.75)=22.86
"""  

案例一:

 class People:
     def __init__(self, name, weight, height):
         self.name = name
         self.weight = weight
         self.height = height
# 定義函數的原因1:
# 1、從bmi的公式上看,bmi應該是觸發功能計算得到的
# 2、bmi是隨著身高、體重的變化而動態變化的,不是一個固定的值
#    說白了,每次都是需要臨時計算得到的
# 但是bmi聽起來更像是一個資料屬性,而非功能
	 @property
	 def bmi(self):
		return self.weight / (self.height ** 2)
 obj1 = People('egon', 70, 1.83)
 print(obj1.bmi())
 obj1.height=1.86
 print(obj1.bmi())
 print(obj1.bmi)

案例二:

'''
學習中遇到問題沒人解答?小編建立了一個Python學習交流群:711312441
尋找有志同道合的小夥伴,互幫互助,群裡還有不錯的視訊學習教學和PDF電子書!
'''
 class People:
     def __init__(self, name):
         self.__name = name
     def get_name(self):
         return self.__name
     def set_name(self, val):
         if type(val) is not str:
             print('必須傳入str型別')
             return
         self.__name = val
     def del_name(self):
         print('不讓刪除')
         # del self.__name
     name=property(get_name,set_name,del_name)
 obj1=People('egon')
 # print(obj1.get_name())
 # obj1.set_name('EGON')
 # print(obj1.get_name())
 # obj1.del_name()
 # 人正常的思維邏輯
 print(obj1.name) #
 # obj1.name=18
 # del obj1.name

案例三:

class People:
    def __init__(self, name):
        self.__name = name
    @property
    def name(self): # obj1.name
        return self.__name
    @name.setter
    def name(self, val): # obj1.name='EGON'
        if type(val) is not str:
            print('必須傳入str型別')
            return
        self.__name = val
    @name.deleter
    def name(self): # del obj1.name
        print('不讓刪除')
        # del self.__name
obj1=People('egon')
# 人正常的思維邏輯
print(obj1.name) #
# obj1.name=18
# del obj1.name

到此這篇關於Python property裝飾器使用案例介紹的文章就介紹到這了,更多相關Python property內容請搜尋it145.com以前的文章或繼續瀏覽下面的相關文章希望大家以後多多支援it145.com!


IT145.com E-mail:sddin#qq.com