类和对象(XI)-属性访问相关魔法方法中关于__getattribute__()魔法方法例子的困惑
各位大神:我在看小甲鱼Python视频类和对象(XI)-属性访问相关魔法方法中讲解__getattribute__()魔法方法的例子时,例子如下:
class C:
def __init__(self, name, age):
self.name = name
self.__age = age
def __getattribute__(self, attrname):
print('拿来吧你')
return super().__getattribute__(attrname)
问题1:return super().__getattribute__(attrname)中的super()起的什么作用?
问题2:如果把return super().__getattribute__(attrname)中的super().进行删除,则代码变为如下:
class C:
def __init__(self, name, age):
self.name = name
self.__age = age
def __getattribute__(self, attrname):
print('拿来吧你')
return __getattribute__(attrname)
当执行c = C('小甲鱼', 18)时,为何显示4遍'拿来吧你'?
本帖最后由 lxping 于 2022-12-3 22:02 编辑
1、因为objects是类C的父类,且object中有__getattribute__(attrname)这个魔法方法,使用super().__getattribute__(attrname)可以避免:使用return self.__getattribute__(attrname),在使用self.name或者self._age进行属性访问的时候进入的无线递归循环。
2、删掉super(),实例化对象没有你说的情况呀,但是属性访问就会有问题
class C:
def __init__(self, name, age):
self.name = name
self.__age = age
def __getattribute__(self, attrname):
print('拿来吧你')
return __getattribute__(attrname)
c = C("小甲鱼", 18)
c.name
拿来吧你
Traceback (most recent call last):
File "<pyshell#23>", line 1, in <module>
c.name
File "<pyshell#14>", line 7, in __getattribute__
return __getattribute__(attrname)
NameError: name '__getattribute__' is not defined
问题1:
super() 就是调用父类的意思,super().__getattribute__(attrname) 也就是调用父类的 __getattribute__ 方法,主要作用是防止陷入无限递归
问题2:
你这里显示 4 遍可能是因为你执行了其他访问对象属性的方法,或者之前执行的代码在同一个控制台下,导致你 C 类定义还是之前的
否则单纯只靠 c = C('小甲鱼', 18) 不会自动调用 __getattribute__,因为这里并没有对 C 对象的属性进行访问
页:
[1]