我想在 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__
关键字或其他东西。