__getattribute__
程序员文章站
2022-06-29 07:59:04
[TOC] \_\_getattr\_\_ 不存在的属性访问,触发\_\_getattr\_\_ 10 执行的是我 \_\_getattribute\_\_ 查找属性无论是否存在,都会执行 你可真霸道呀!!! 不管是否存在,我都会执行 不管是否存在,我都会执行 \_\_getattr\_\_与\_\ ......
目录
__getattr__
- 不存在的属性访问,触发__getattr__
class foo: def __init__(self, x): self.x = x def __getattr__(self, item): print('执行的是我') # return self.__dict__[item] f1 = foo(10)
print(f1.x)
10
f1.xxxxxx
执行的是我
__getattribute__
- 查找属性无论是否存在,都会执行
- 你可真霸道呀!!!
class foo: def __init__(self, x): self.x = x def __getattribute__(self, item): print('不管是否存在,我都会执行') f1 = foo(10)
f1.x
不管是否存在,我都会执行
f1.xxxxxx
不管是否存在,我都会执行
__getattr__与__getattribute__
- 当__getattribute__与__getattr__同时存在,只会执行__getattrbute__,除非__getattribute__在执行过程中抛出异常attributeerror
#_*_coding:utf-8_*_ __author__ = 'linhaifeng' class foo: def __init__(self, x): self.x = x def __getattr__(self, item): print('执行的是我') # return self.__dict__[item] def __getattribute__(self, item): print('不管是否存在,我都会执行') raise attributeerror('哈哈') f1 = foo(10)
f1.x
不管是否存在,我都会执行 执行的是我
f1.xxxxxx
不管是否存在,我都会执行 执行的是我
上一篇: npm换源成淘宝镜像
下一篇: 拼接字符转的转义
推荐阅读
-
详解Python中 __get__和__getattr__和__getattribute__的区别
-
python中的__getattr__、__getattribute__、__setattr__、__delattr__、__dir__
-
对比Python中__getattr__和 __getattribute__获取属性的用法
-
详解Python中 __get__和__getattr__和__getattribute__的区别
-
Python魔法方法__getattr__和__getattribute__详解
-
python元编程之使用动态属性实现定制类--特殊方法__setattr__,__getattribute__篇
-
__getattribute__
-
python__高级 : 类的__getattribute__ 方法
-
python __getattribute__、__getattr__、__setattr__详解
-
python-__getattr__ 和 __getattribute__