2021
02-21
02-21
JavaScript 实现继承的几种方式
非ES6代码实现继承的主流方式主要可以分为:构造继承、原型链继承、构造继承+原型链继承组合继承、以及在组合继承上衍生出的继承方式。构造继承(借助call实现)实现functionSuper(age){this.age=age;this.say=function(){console.log(this.age)}}functionChild(name,age){Super.call(this,age)this.name=name;}varchild=newChild("min",23)console.log(childinstanceofSuper);//falseconsole.log(childinst...
继续阅读 >