js继承实现
原型链继承
通过将子类的原型对象指向父类的实例实现继承。子类实例可以访问父类原型上的属性和方法。
function Parent() {
this.name = 'parent';
}
Parent.prototype.sayName = function() {
console.log(this.name);
};
function Child() {}
Child.prototype = new Parent(); // 核心步骤
const child = new Child();
child.sayName(); // 'parent'
构造函数继承
在子类构造函数中调用父类构造函数,使用call/apply改变this指向。只能继承父类实例属性,无法继承原型方法。
function Parent(name) {
this.name = name;
}
function Child(name) {
Parent.call(this, name); // 核心步骤
}
const child = new Child('child');
console.log(child.name); // 'child'
组合继承
结合原型链继承和构造函数继承,既能继承实例属性又能继承原型方法。是最常用的继承方式。

function Parent(name) {
this.name = name;
}
Parent.prototype.sayName = function() {
console.log(this.name);
};
function Child(name, age) {
Parent.call(this, name); // 继承实例属性
this.age = age;
}
Child.prototype = new Parent(); // 继承原型方法
Child.prototype.constructor = Child; // 修复构造函数指向
const child = new Child('child', 10);
child.sayName(); // 'child'
原型式继承
基于已有对象创建新对象,类似Object.create的实现。适用于简单对象继承。
function createObject(obj) {
function F() {}
F.prototype = obj;
return new F();
}
const parent = { name: 'parent' };
const child = createObject(parent);
console.log(child.name); // 'parent'
寄生式继承
在原型式继承基础上增强对象,添加额外方法或属性。

function createEnhancedObject(obj) {
const clone = Object.create(obj);
clone.sayName = function() {
console.log(this.name);
};
return clone;
}
const parent = { name: 'parent' };
const child = createEnhancedObject(parent);
child.sayName(); // 'parent'
寄生组合式继承
目前最理想的继承方式,避免组合继承中两次调用父类构造函数的问题。
function inheritPrototype(child, parent) {
const prototype = Object.create(parent.prototype);
prototype.constructor = child;
child.prototype = prototype;
}
function Parent(name) {
this.name = name;
}
Parent.prototype.sayName = function() {
console.log(this.name);
};
function Child(name, age) {
Parent.call(this, name);
this.age = age;
}
inheritPrototype(Child, Parent); // 核心步骤
const child = new Child('child', 10);
child.sayName(); // 'child'
ES6 class继承
使用extends关键字实现继承,语法更简洁直观,底层实现仍是原型继承。
class Parent {
constructor(name) {
this.name = name;
}
sayName() {
console.log(this.name);
}
}
class Child extends Parent {
constructor(name, age) {
super(name);
this.age = age;
}
}
const child = new Child('child', 10);
child.sayName(); // 'child'





