だから、私は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
、ゲッターは機能しません!
私は何が欠けていますか?