__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 # 不存在的属性访问,触发__getattr__
__getattribute__
class Foo:
def __init__(self, x):
self.x = x
def __getattribute__(self, item):
print(‘不管是否存在,我都会执行’)
f1 = Foo(10)
f1.x
f1.xxxxxx
raise AttributeError()
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 # 不管是否存在,我都会执行 → 执行的是我
# 当__getattribute__与__getattr__同时存在,只会执行__getattrbute__,
# 除非__getattribute__在执行过程中抛出异常AttributeError
再次注意:当__getattribute__()与__getattr__()同时存在,只会执行__getattrbute__(),除非__getattribute__()在执行过程中抛出异常AttributeError
其实相当于__getattribute__()是__getattr__()的老大,当__getattribute__()方法抛出异常AttributeError()时,自动调用__getattr()__。
__getattr()__只接受AttributeError()的错误信息才运行。其他错误信息一律不接受。
__getattr()__只接受AttributeError()的错误信息代码示例:
class Foo:
def __init__(self, x):
self.x = x
def __getattr__(self, item):
print(‘执行的是我’)
# return self.__dict__[item]
def __getattribute__(self, item):
print(‘不管是否存在,我都会执行’)
raise TabError(‘哈哈’)
f1 = Foo(10)
f1.x
f1.xxxxxx
__getattr()__只接受AttributeError()的错误信息运行结果:
不管是否存在,我都会执行
Traceback (most recent call last):
File “H:/Flask/shiyanlou/laonanhai/__getattribute__.py”, line 43, in
f1.x
File “H:/Flask/shiyanlou/laonanhai/__getattribute__.py”, line 39, in __getattribute__
raise TabError(‘哈哈’)
TabError: 哈哈
版权声明:本文内容由互联网用户自发贡献,该文观点仅代表作者本人。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌侵权/违法违规的内容, 请发送邮件至 举报,一经查实,本站将立刻删除。
如需转载请保留出处:https://bianchenghao.cn/34750.html