require是赋值过程,import是解构过程

class Foo {
  static classMethod() {
    return 'hello';
  }
}
Foo.classMethod() // 'hello'

// static方法不能被实例继承
var foo = new Foo();
foo.classMethod()
// TypeError: foo.classMethod is not a function

// static方法可以被子类继承
class Bar extends Foo {
}
Bar.classMethod(); // 'hello'

  

posted @ 2019-10-16 16:18  fm060  阅读(464)  评论(0编辑  收藏  举报