ES6类成员本身就是一个类

时间:2016-05-20 09:25:27

标签: javascript ecmascript-6

在es6中,一个类可以有方法和静态方法作为其成员。它还可以成为成员吗? (因为Class本身就是一种功能?) 我希望它能构建嵌套类。

class foo {
  barMethod {
    // do something for the instance
  }
  static bamMethod {
    // do something
  }

  // e.g.
  class batClass {
    // the constructor and other stuff for batClass 
  }

}

new foo.batClass();

1 个答案:

答案 0 :(得分:0)

[No。](Nested ES6 classes?)。阅读这篇文章。你只能像评论中提到的@floribon一样。