鱼C论坛

 找回密码
 立即注册
查看: 2807|回复: 2

[已解决]类和对象(XI)-属性访问相关魔法方法中关于__getattribute__()魔法方法例子的困惑

[复制链接]
发表于 2022-12-3 19:39:25 | 显示全部楼层 |阅读模式

马上注册,结交更多好友,享用更多功能^_^

您需要 登录 才可以下载或查看,没有账号?立即注册

x
各位大神:

我在看小甲鱼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遍'拿来吧你'?
最佳答案
2022-12-3 20:11:00
本帖最后由 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
想知道小甲鱼最近在做啥?请访问 -> ilovefishc.com
回复

使用道具 举报

发表于 2022-12-3 20:11:00 | 显示全部楼层    本楼为最佳答案   
本帖最后由 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
想知道小甲鱼最近在做啥?请访问 -> ilovefishc.com
回复 支持 反对

使用道具 举报

发表于 2022-12-4 09:28:26 | 显示全部楼层


问题1:

super() 就是调用父类的意思,super().__getattribute__(attrname) 也就是调用父类的 __getattribute__ 方法,主要作用是防止陷入无限递归

问题2:

你这里显示 4 遍可能是因为你执行了其他访问对象属性的方法,或者之前执行的代码在同一个控制台下,导致你 C 类定义还是之前的

否则单纯只靠 c = C('小甲鱼', 18) 不会自动调用 __getattribute__,因为这里并没有对 C 对象的属性进行访问
想知道小甲鱼最近在做啥?请访问 -> ilovefishc.com
回复 支持 1 反对 0

使用道具 举报

您需要登录后才可以回帖 登录 | 立即注册

本版积分规则

小黑屋|手机版|Archiver|鱼C工作室 ( 粤ICP备18085999号-1 | 粤公网安备 44051102000585号)

GMT+8, 2024-12-24 13:34

Powered by Discuz! X3.4

© 2001-2023 Discuz! Team.

快速回复 返回顶部 返回列表