11
class SomeClass:
    SOME_CONST = "hello"
    SOME_OTHER_CONST = SomeClass.SOME_CONST + " world"

这行不通。

NameError:未定义名称“SomeClass”

有没有办法在类中引用类?

4

1 回答 1

19

你不需要类名

class SomeClass:
   SOME_CONST = "hello"
   SOME_OTHER_CONST = SOME_CONST + " world"
于 2012-04-06T05:21:06.103 回答