そのため、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
、ゲッターが機能しなくなります。
何が欠けていますか?