我正在尝试从父静态方法调用静态方法。
这是我想要实现的目标:
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
关键字替换为什么?