递归的原因是什么?

时间:2019-01-28 14:55:13

标签: python python-3.x recursion getattribute

Difference between __getattr__ vs __getattribute__上有__getattr___getattribute__的一些很好的例子。

为什么__getattribute__被调用19次-代码之后? 好的-这是递归...但是为什么?

class Count(object):

    def __init__(self,mymin,mymax):
        self.mymin=mymin
        self.mymax=mymax
        self.current=None

    def __getattr__(self, item):
            self.__dict__[item]=0
            return 0

    def __getattribute__(self, item):
        print("__getattribute__: ", item)          # only this line is new!!!!
        if item.startswith('cur'):
            raise AttributeError
        return object.__getattribute__(self,item)
        # or you can use ---return super().__getattribute__(item)
        # note this class subclass object

obj1 = Count(1,10)
print(obj1.mymin)
print(obj1.mymax)
print(obj1.current)
print("end")

输出:

__getattribute__:  mymin
1
__getattribute__:  mymax
10
__getattribute__:  current
__getattribute__:  __dict__
0
end
__getattribute__:  __class__
__getattribute__:  __class__
__getattribute__:  __class__
__getattribute__:  __class__
__getattribute__:  __class__
__getattribute__:  __class__
__getattribute__:  __class__
__getattribute__:  __class__
__getattribute__:  __class__
__getattribute__:  __class__
__getattribute__:  __class__
__getattribute__:  __class__
__getattribute__:  __class__
__getattribute__:  __class__
__getattribute__:  __class__
__getattribute__:  __class__
__getattribute__:  __class__
__getattribute__:  __class__
__getattribute__:  __class__

1 个答案:

答案 0 :(得分:0)

使用CPython 3.7,重现问题的唯一方法是在代码中放置断点并进行调试。

因此,对Count.__getattribute__的多次调用很可能是由尝试访问您的类属性的其他原因(在我的情况下:调试器)引起的。

记录下来,这是我以正常方式运行代码时的跟踪记录:

__getattribute__:  mymin
1
__getattribute__:  mymax
10
__getattribute__:  current
__getattribute__:  __dict__
0
end

请注意,即使访问obj1.current,也不会显示任何异常跟踪。这是我无法解释的特定行为。