python中__setattr__的屬性設定

highhand發表於2021-09-11

python中__setattr__的屬性設定

1、說明

定義類物件管理屬性並將屬性名以及值儲存在一個例項物件中。

self.attrname 以及 instance.attrname 將會呼叫類的內建方法__setattr__方法。

2、例項

# attr.pyclass AcessControl:
    def __init__(self):
        self.hobby = "basketball"               # 會呼叫下面的__setattr__方法
 
    def __setattr__(self, key, value):
        # self.name = "xxxx"                    # 不能在__setattr__上使用self.attr,會導致遞回應用迴圈
        print("access control set attr ...")                if key == 'age':
            self.__dict__[key] = value + 10     # 透過內建字典來儲存屬性資料
        else:
            self.__dict__[key] = value            def __delattr__(self, item):
        print("del item[%s]" % item)            def __getattr__(self, item):
        print("get item[%s]" % item)    def test_access_control():
    ac = AcessControl()
    ac.age = 10         # 呼叫__setattr__
    print(ac.age)       # 直接輸入值,沒有呼叫__getattr__
    print(ac.hobby)     # 當屬性有值時,也就是非None是不會呼叫__getattr__方法的,如果沒有值,即None就會呼叫__getattr__方法
    del ac.age          # 呼叫__delattr__
    print(ac.name)      # 呼叫__getattr__,呼叫未定義的屬性時候就會回撥這個函式並且返回Noneif __name__ == '__main__':    test_access_control()>>> python attr.py      # 2.x & 3.x

以上就是python中__setattr__的屬性設定,希望對大家有所幫助。更多Python學習指路:

本文教程操作環境:windows7系統、Python 3.9.1,DELL G3電腦。

來自 “ ITPUB部落格 ” ,連結:http://blog.itpub.net/810/viewspace-2830352/,如需轉載,請註明出處,否則將追究法律責任。

相關文章