cmu052115 发表于 2023-4-12 20:52:08

getattribute_

这段代码会无限循环
class C():
      def __getattribute__(self,name):
                self.x +=1
c=C()
c.x



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

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

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

陷入无限递归,直到超出最大递归次数而报错
页: [1]
查看完整版本: getattribute_