从超类调用多态静态方法

时间:2019-01-27 07:25:21

标签: javascript ecmascript-6 static polymorphism

我正在尝试从父静态方法调用静态方法。

这是我想要实现的目标:

glViewport(...)

我的目标是让class Parent { static greet() { console.log(self.message()) // <-- what should that be? } } class Child1 extends Parent { static message() { return 'Hello, World' } } class Child2 extends Parent { static message() { return 'Hi, Everyone' } } 记录Child1.greet()Hello, World记录Child2.greet()

Hi, Everyone方法中应将self关键字替换为什么?

0 个答案:

没有答案