PHP前端开发

类属性和实例属性为何在使用描述符后出现不一致?

百变鹏仔 5天前 #Python
文章标签 实例

为何类属性与实例属性不一致?

在此处代码里:

class foo:    def __get__(self, instance, owner):        pass    def __set__(self, instance, value):        passclass bar:    x = foo()    def __init__(self, n):        self.x = n

y 和 bar 实例的初始值相等,因为双方都使用描述符 foo,它定义了 getset 方法。

>>> y = bar(1)>>> y.x>>> bar.x>>> bar.x == y.xtrue

但是,当将 bar.x 更改为常规数据类型 2 时,y 和 bar 的属性分离。

>>> Bar.x = 2>>> y.x2>>> Bar.x2>>> y = Bar(3)>>> y.x3>>> Bar.x2

这是因为描述符 foo 通过 getset 方法起作用。当 x 是 foo 时,y.x 和 bar.x 通过描述符相互关联。但是,bar.x 被替换为数字 2 后,x 的类型和内存地址发生变化,将 y.x 和 bar.x 分离。

根据官方文档对描述符调用的描述: