16

尝试覆盖子类中的属性时,我对这种行为感到有些困惑。

第一个示例设置了两个类,Parent并且Child. Parent继承自object,而Child继承自Parent。该属性a是使用属性装饰器定义的。当child.a调用 's setter 方法时,AttributeError会引发 an 。

在第二个示例中,通过使用property()函数而不是装饰器,一切都按预期工作。

谁能解释为什么行为不同?另外,是的,我知道__init__不需要 Child 中的定义。

示例 1 - 使用@property

class Parent(object):
    def __init__(self):
        self._a = 'a'
    @property
    def a(self):
        return self._a
    @a.setter
    def a(self, val):
        self._a = val

class Child(Parent):
    def __init__(self):
        super(Child, self).__init__()
    @property
    def a(self):
        return super(Child, self).a
    @a.setter
    def a(self, val):
        val += 'Child'
        super(Child, self).a = val

p = Parent()
c = Child()
print p.a, c.a
p.a = 'b'
c.a = 'b'
print p.a, c.a

示例 1 返回 - 引发属性错误

a a
Traceback (most recent call last):
  File "testsuper.py", line 26, in <module>
    c.a = 'b'
  File "testsuper.py", line 20, in a
    super(Child, self).a = val
AttributeError: 'super' object has no attribute 'a'

示例 2 -Using property()

class Parent(object):
    def __init__(self):
        self._a = 'a'
    def _get_a(self):
        return self._a
    def _set_a(self, val):
        self._a = val
    a = property(_get_a, _set_a)

class Child(Parent):
    def __init__(self):
        super(Child, self).__init__()
    def _get_a(self):
        return super(Child, self)._get_a()
    def _set_a(self, val):
        val = val+'Child'
        super(Child, self)._set_a(val)
    a = property(_get_a, _set_a)

p = Parent()
c = Child()
print p.a, c.a
p.a = 'b'
c.a = 'b'
print p.a, c.a

示例 2 返回 - 正常工作

a a
b bChild
4

1 回答 1

11

super()返回一个代理对象,而不是超类,并且它不支持 function __set__()

您可以在此处查看更多详细信息Python super 和设置父类属性以及此处http://bugs.python.org/issue14965

于 2012-11-28T06:46:55.790 回答