所以,我和 Python 2.6中的装饰者们一起玩,我在让他们工作上遇到了一些麻烦。这是我的课程档案:
class testDec:
@property
def x(self):
print 'called getter'
return self._x
@x.setter
def x(self, value):
print 'called setter'
self._x = value
我认为这意味着将 x
视为一个属性,但是在 get 和 set 上调用这些函数。于是,我启动了 IDLE 并检查了它:
>>> from testDec import testDec
from testDec import testDec
>>> t = testDec()
t = testDec()
>>> t.x
t.x
called getter
Traceback (most recent call last):
File "<stdin>", line 1, in <module>
File "testDec.py", line 18, in x
return self._x
AttributeError: testDec instance has no attribute '_x'
>>> t.x = 5
t.x = 5
>>> t.x
t.x
5
显然,第一个调用按预期工作,因为我调用了 getter,没有默认值,它失败了。好的,我明白了。但是,分配 t.x = 5
的调用似乎创建了一个新的属性 x
,现在 getter 不工作了!
我错过了什么?