search

Home  >  Q&A  >  body text

javascript - es6 继承,super方法

http://es6.ruanyifeng.com/#docs/class,这个教程里面说到如果子类的构造函数内不调用super方法,会出错,因为子类内就得不到this对象,这是为什么? 为什么子类内不会有this对象呢?

天蓬老师天蓬老师2843 days ago650

reply all(2)I'll reply

  • ringa_lee

    ringa_lee2018-01-22 19:11:27

    This is because the subclass does not have its own this object, but inherits the this object of the parent class and then processes it.

    reply
    0
  • PHP中文网

    PHP中文网2017-04-10 17:51:33

    子类必须在constructor方法中调用super方法,否则新建实例时会报错。这是因为子类没有自己的this对象,而是继承父类的this对象,然后对其进行加工。如果不调用super方法,子类就得不到this对象。

    这是因为子类没有自己的this对象,而是继承父类的this对象,然后对其进行加工。

    reply
    0
  • Cancelreply