从常规 ES6 类方法调用静态方法访问类型结论
2022-08-30 01:18:46
调用静态方法的标准方法是什么?我可以考虑使用或使用类本身的名称,我不喜欢后者,因为它感觉没有必要。前者是推荐的方式,还是有别的?constructor
下面是一个(人为的)示例:
class SomeObject {
constructor(n){
this.n = n;
}
static print(n){
console.log(n);
}
printN(){
this.constructor.print(this.n);
}
}