23
以下面的代碼爲例:的CoffeeScript:從實例方法參考類方法沒有硬編碼
class MyClass
@staticMethod: -> hello_world()
instanceMethod: -> MyClass.staticMethod()
有沒有一種方法,我可以從裏面instanceMethod
引用MyClass的不明確命名呢?像self.staticMethod()