wodeyx6300 发表于 2021-6-2 10:04:35

__getattribute__ 死循环

求助这段代码为什么会无限循环{:10_266:}
class C():
        def __getattribute__(self,name):
                self.x +=1
c=C()
c.x

Twilight6 发表于 2021-6-2 10:43:40


你先要了解 __getattribute__ 魔法方法的功能,该方法是当该类中的属性被访问时会自动调用 __getattribute__

则当你 c.x 访问时,那么执行 self.x += 1 ,而 self.x += 1 时需要获取 self.x 当前值的大小,就会导致自动调用 __getattribute__

而 __getattribute__ 中又进行 self.x += 1 又要获取当前 self.x 的值的大小,又自动调用 __getattribute__.......

陷入无限递归,直到超出最大递归次数而报错

wodeyx6300 发表于 2021-6-2 12:22:52

本帖最后由 wodeyx6300 于 2021-6-2 12:25 编辑

Twilight6 发表于 2021-6-2 10:43
你先要了解 __getattribute__ 魔法方法的功能,该方法是当该类中的属性被访问时会自动调用 __getattribut ...

感谢大佬,,之前重写了setattr没找出来调用getattribute,一直没明白赋值为什么会调用getattribute。这个解释清楚了
页: [1]
查看完整版本: __getattribute__ 死循环