djangoアプリケーション用のJiraクライアントをまとめたので、静的にする必要がありますが、静的フィールド@property
に変換する方法がわかりません。@?.setter
私がクラスを持っているとしましょう:
class nothing(object):
auth_token = None
counter = 0
@property
def a(self):
self.log('getter')
if not self.auth_token:
self.auth_token = 'default'
return self.auth_token
@a.setter
def a(self, value):
self.log('setter')
self.auth_token = value
def log(self, value):
self.counter+=1
print '{0} called / counter: {1}'.format(value, self.counter)
そして私はそのメソッドを静的にしたい:
class nothing:
auth_token = None
counter = 0
@staticmethod
def get_a():
nothing.log('getter')
if not nothing.auth_token:
nothing.log('auth_token value is None, setting')
nothing.auth_token = 'default'
return nothing.auth_token
@staticmethod
def set_a(value):
nothing.log('setter')
nothing.auth_token = value
@staticmethod
def log(value):
nothing.counter+=1
print '{0} called / counter: {1}'.format(value, nothing.counter)
を呼び出すとオブジェクトが返され、実際には呼び出されないため、現在のget_a
マークを付けることはできません。メソッドは私が一緒に暮らせるものですが、代わりにゲッター/セッターを使用する方法はありますか?@property
get_a