__getattribute__对应的是 . 运算符,解释器会首先调用该方法,如果找不到指定的属性,则会调用__getattr__方法。
class Test1:
def normal(self):
print("this is normal")
class Test2:
def __getattribute__(self, other):
print("getattribute")
class Test3:
def __getattr__(self, other):
print("getattr")
class Sample1(Test1, Test2, Test3):
pass
>>> s1 = Sample1()
>>> s1.normal
>>> getattribute
>>> s1.normal()
>>> Traceback (most recent call last):
File "test.py", line 17, in <module>
s1.normal()
TypeError: 'NoneType' object is not callable
"""
上例说明,python解释器会调用__getattribute__来处理 . 属性调用
"""
class Sample2(Test1, Test3):
pass
>>> s2 = Sample()
>>> s2.normal()
>>> this is normal
>>> s2.bad
>>> getattr
"""
上例说明,当自带的__attribute__方法找不到指定参数时,会调用__getattr__方法
"""
在源文件中导入的module也是Module对象,它和其它对象一样,都遵从这种属性调用机制,所以可以在源文件中定义__getattr__方法,这样当它作为模块被导入时,如果有不属于本模块的属性被调用,则可以在__attr__方法中动态的调用其它模块中的属性予以返回。
|