所以,我在 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,并且没有默认值,它失败了。好的,好的,我明白了。但是,对 assign 的调用t.x = 5
似乎创建了一个新属性x
,现在 getter 不起作用!
我错过了什么?