- 对于JavaScript来说,继承有两个要点:
- 复用父构造函数中的代码 - 复用父原型中的代码第一种实现复用父构造函数中的代码,我们可以考虑调用父构造函数并将 this 绑定到子构造函数。
- 第一种方法:复用父原型中的代码,我们只需改变原型链即可。将子构造函数的原型对象的 proto 属性指向父构造函数的原型对象。
- 第二种实现:使用 new 操作符来替代直接使用 proto 属性来改变原型链。
- 第三种实现:使用一个空构造函数来作为中介函数,这样就不会将构造函数中的属性混到 prototype 中 function A(x, y) { this.x = x this.y = y } A.prototype.run = function () { } // 寄生继承 二者一起使用 function B(x, y) { A.call(this, x, y) // 借用继承 } B.prototype = new A() // 原型继承 // 组合继承 Function.prototype.extends = function (superClass) { function F() { } F.prototype = superClass.prototype if (superClass.prototype.constructor !== superClass) { Object.defineProperty(superClass.prototype, 'constructor', { value: superClass }) } let proto = this.prototype this.prototype = new F() let names = Reflect.ownKeys(proto) for (let i = 0; i < names.length; i++) { let desc = Object.getOwnPropertyDescriptor(proto, names[i]) Object.defineProperty(this.prototypr, name[i], desc) } this.prototype.super = function (arg) { superClass.apply(this, arg) } this.prototype.supers = superClass.prototype }
- 第四种实现:es6类的继承extends。