次のように、Pythonで単純なクラス定数が必要です。
class FooBarBaz:
BAR = 123
@staticmethod
def getBar():
return BAR # this would not work, of course
return FooBarBaz.BAR # this would work but is "way too long"
現在のインスタンスではなく、メソッド内からクラス自体を参照するより短い方法はありますか? 静的メソッドだけでなく、__class__
キーワードなどの一般的なものです。