溫馨提示×

溫馨提示×

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

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

python描述器的用法

發(fā)布時間:2021-04-27 14:48:21 來源:億速云 閱讀:157 作者:小新 欄目:編程語言

這篇文章主要介紹python描述器的用法,文中介紹的非常詳細,具有一定的參考價值,感興趣的小伙伴們一定要看完!

python有哪些常用庫

python常用的庫:1.requesuts;2.scrapy;3.pillow;4.twisted;5.numpy;6.matplotlib;7.pygama;8.ipyhton等。

本文教程操作環(huán)境:windows7系統(tǒng)、Python 3.9.1,DELL G3電腦。

1、說明

描述器必須是類屬性,Python中,一個類實現(xiàn)了__get__ 、__set__、__delete__三個任意一個方法都稱為描述器;

如果一個類的類屬性設置為描述器,那么它被稱為此描述器的owner。

2、實例方法的實現(xiàn)

Python的方法,普通的實例方法,包括staticmethod和classmethod,都實現(xiàn)為非數(shù)據(jù)描述器。因此,實例可以重新定義和覆蓋方法,表現(xiàn)為正常的字典屬性的訪問和修改 。這允許單個實例獲取與同一類的其他實例不同的行為。

3、實例

Python的方法,普通的實例方法,包括staticmethod和classmethod,都實現(xiàn)為非數(shù)據(jù)描述器。

class A:
    @classmethod  # 非數(shù)據(jù)描述器
    def foo(cls):
        pass
 
    @staticmethod  # 非數(shù)據(jù)描述器
    def bar():
        pass
 
    @property  # 數(shù)據(jù)描述器
    def z(self):
        return 5
 
    def getfoo(self): # 非數(shù)據(jù)描述器
        return self.foo
 
    def __init__(self): # 非數(shù)據(jù)描述器
        self.foo = 100
        self.bar = 200
        #self.z = 300 # AttributeError: can't set attribute  無法覆蓋數(shù)據(jù)描述器的定義
 
 
a = A()
print(a.__dict__)  # {'foo': 100, 'bar': 200} 看不到z屬性
print(A.__dict__) # {'__module__': '__main__', 'foo': <classmethod object at 0x0000017674C6B7B8>, 'bar': <staticmethod object at 0x0000017674C6B7F0>, 'z': <property object at 0x0000017674BCD598>, 'getfoo': <function A.getfoo at 0x0000017674C58C80>, '__init__': <function A.__init__ at 0x0000017674C58D08>, '__dict__': <attribute '__dict__' of 'A' objects>, '__weakref__': <attribute '__weakref__' of 'A' objects>, '__doc__': None}

以上是“python描述器的用法”這篇文章的所有內(nèi)容,感謝各位的閱讀!希望分享的內(nèi)容對大家有幫助,更多相關知識,歡迎關注億速云行業(yè)資訊頻道!

向AI問一下細節(jié)

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

AI