javascript - es6 继承,super方法
天蓬老师
天蓬老师 2017-04-10 17:49:33
0
2
638

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

天蓬老师
天蓬老师

欢迎选择我的课程,让我们一起见证您的进步~~

reply all(2)
ringa_lee

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.

Ty80

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

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

Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template