__setattr__,__delattr__,__getattr__
程序员文章站
2024-01-11 23:07:34
[TOC] \_\_setattr\_\_ 添加/修改属性会触发它的执行 \_\_delattr\_\_ 删除属性的时候会触发 from delattr {} \_\_getattr\_\_ 只有在使用点调用属性且属性不存在的时候才会触发 from getattr:你找的属性不存在 ......
目录
class foo: x = 1 def __init__(self, y): self.y = y def __getattr__(self, item): print('----> from getattr:你找的属性不存在') def __setattr__(self, key, value): print('----> from setattr') # self.key = value # 这就无限递归了,你好好想想 # self.__dict__[key] = value # 应该使用它 def __delattr__(self, item): print('----> from delattr') # del self.item # 无限递归了 self.__dict__.pop(item) f1 = foo(10)
__setattr__
- 添加/修改属性会触发它的执行
print(f1.__dict__ ) # 因为你重写了__setattr__,凡是赋值操作都会触发它的运行,你啥都没写,就是根本没赋值,除非你直接操作属性字典,否则永远无法赋值 f1.z = 3 print(f1.__dict__)
__delattr__
- 删除属性的时候会触发
f1.__dict__['a'] = 3 # 我们可以直接修改属性字典,来完成添加/修改属性的操作 del f1.a print(f1.__dict__)
----> from delattr {}
__getattr__
- 只有在使用点调用属性且属性不存在的时候才会触发
f1.xxxxxx
----> from getattr:你找的属性不存在
下一篇: AI快速使用铅笔工具绘制光滑线条
推荐阅读
-
__setattr__,__delattr__,__getattr__
-
对比Python中__getattr__和 __getattribute__获取属性的用法
-
详解Python中 __get__和__getattr__和__getattribute__的区别
-
python中的__getattr__、__getattribute__、__setattr__、__delattr__、__dir__
-
对比Python中__getattr__和 __getattribute__获取属性的用法
-
详解Python中 __get__和__getattr__和__getattribute__的区别
-
Python魔法方法__getattr__和__getattribute__详解
-
python中的__dict__,__getattr__,__setattr__
-
Python __getattr__与__setattr__使用方法
-
python的___setattr__魔方方法