考虑以下代码:
class ClassA(object):
def __getattribute__(self, item):
print 'custom__getattribute__ - ' + item
return ''
def __str__(self):
print 'custom__str__'
return ''
a=ClassA()
print 'a.__str__: ',
a.__str__
print 'str(a): ',
str(a)
输出让我感到惊讶:
a.__str__: custom__getattribute__ - __str__
str(a): custom__str__
- 不
str(a)
应该映射到魔术方法a.__str__()
吗? - 如果我删除了 custom
ClassA.__str__()
,那么ClassA.__getattribute__()
仍然没有接听电话。怎么来的?