Js实现继承的6种方式

简介: Js实现继承的6种方式

JavaScript 中实现继承的 6 种方式包括:

  1. 原型链继承
  2. 借用构造函数继承
  3. 组合继承(原型链 + 借用构造函数)
  4. 原型式继承
  5. 寄生式继承
  6. 寄生组合式继承

下面是每种方式的详细代码示例:

1. 原型链继承

javascriptfunction Parent() {
this.name = 'Parent';
this.play = [1, 2, 3];
}
function Child() {
this.type = 'Child';
}
Child.prototype = new Parent(); // Child 继承 Parent
let child1 = new Child();
let child2 = new Child();
console.log(child1.name); // Parent
console.log(child1.play === child2.play); // true

2. 借用构造函数继承

javascriptfunction Parent() {
this.name = 'Parent';
this.play = [1, 2, 3];
}
function Child() {
Parent.call(this); // 借用 Parent 构造函数
this.type = 'Child';
}
let child1 = new Child();
let child2 = new Child();
console.log(child1.name); // Parent
console.log(child1.play === child2.play); // false

3. 组合继承(原型链 + 借用构造函数)

javascriptfunction Parent() {
this.name = 'Parent';
this.play = [1, 2, 3];
}
function Child() {
Parent.call(this); // 借用 Parent 构造函数
this.type = 'Child';
}
Child.prototype = new Parent(); // Child 继承 Parent 的原型链
Child.prototype.constructor = Child; // 修复构造函数指向
let child1 = new Child();
let child2 = new Child();
console.log(child1.name); // Parent
console.log(child1.play === child2.play); // true

4. 原型式继承

javascriptfunction object(o) {
function F() {}
F.prototype = o;
return new F();
}
let parent = {
name: 'Parent',
play: [1, 2, 3]
};
let child = object(parent);
child.type = 'Child';
console.log(child.name); // Parent
console.log(child.play === parent.play); // true

5. 寄生式继承

javascriptfunction createAnother(original) {
let clone = object(original); // 通过原型式继承创建对象
clone.sayHello = function() {
console.log('Hello from clone');
};
return clone;
}
let parent = {
name: 'Parent',
play: [1, 2, 3]
};
let child = createAnother(parent);
child.type = 'Child';
console.log(child.name); // Parent
console.log(child.play === parent.play); // true
child.sayHello(); // Hello from clone

6. 寄生组合式继承

javascriptfunction inheritPrototype(child, parent) {
let F = function() {};
F.prototype = parent.prototype;
child.prototype = new F();
child.prototype.constructor = child;
}
function Parent() {
this.name = 'Parent';
this.play = [1, 2, 3];
}
function Child() {
Parent.call(this);
this.type = 'Child';
}
inheritPrototype(Child, Parent);
let child1 = new Child();
let child2 = new Child();
console.log(child1.name); // Parent
console.log(child1.play === child2.play); // false

以上示例展示了 JavaScript 中实现继承的 6 种方式。每种方式都有其特点和应用场景,可以根据具体需求选择合适的方式来实现继承。

相关文章
|
6天前
|
JavaScript 前端开发
如何在 JavaScript 中使用 __proto__ 实现对象的继承?
使用`__proto__`实现对象继承时需要注意原型链的完整性和属性方法的正确继承,避免出现意外的行为和错误。同时,在现代JavaScript中,也可以使用`class`和`extends`关键字来实现更简洁和直观的继承语法,但理解基于`__proto__`的继承方式对于深入理解JavaScript的面向对象编程和原型链机制仍然具有重要意义。
|
15天前
|
JavaScript 前端开发
Javascript如何实现继承?
【10月更文挑战第24天】JavaScript 中实现继承的方式有很多种,每种方式都有其优缺点和适用场景。在实际开发中,我们需要根据具体的需求和情况选择合适的继承方式,以实现代码的复用和扩展。
|
9天前
|
JavaScript 前端开发
如何使用原型链继承实现 JavaScript 继承?
【10月更文挑战第22天】使用原型链继承可以实现JavaScript中的继承关系,但需要注意其共享性、查找效率以及参数传递等问题,根据具体的应用场景合理地选择和使用继承方式,以满足代码的复用性和可维护性要求。
|
9天前
|
JavaScript 前端开发 开发者
js实现继承怎么实现
【10月更文挑战第26天】每种方式都有其优缺点和适用场景,开发者可以根据具体的需求和项目情况选择合适的继承方式来实现代码的复用和扩展。
23 1
|
5月前
|
设计模式 JavaScript 前端开发
在JavaScript中,继承是一个重要的概念,它允许我们基于现有的类(或构造函数)创建新的类
【6月更文挑战第15天】JavaScript继承促进代码复用与扩展,创建类层次结构,但过深的继承链导致复杂性增加,紧密耦合增加维护成本,单继承限制灵活性,方法覆盖可能隐藏父类功能,且可能影响性能。设计时需谨慎权衡并考虑使用组合等替代方案。
46 7
|
5月前
|
JavaScript 前端开发
在 JavaScript 中,实现继承的方法有多种
【6月更文挑战第15天】JavaScript 继承常见方法包括:1) 原型链继承,利用原型查找,实例共享原型属性;2) 借用构造函数,避免共享,但方法不在原型上复用;3) 组合继承,结合两者优点,常用但有额外开销;4) ES6 的 class,语法糖,仍基于原型链,提供直观的面向对象编程。
36 7
|
2月前
|
自然语言处理 JavaScript 前端开发
一文梳理JavaScript中常见的七大继承方案
该文章系统地概述了JavaScript中七种常见的继承模式,包括原型链继承、构造函数继承、组合继承、原型式继承、寄生式继承、寄生组合继承等,并探讨了每种模式的实现方式及其优缺点。
一文梳理JavaScript中常见的七大继承方案
|
2月前
|
JavaScript 前端开发
js之class继承|27
js之class继承|27
|
2月前
|
JSON JavaScript 前端开发
js原型继承|26
js原型继承|26
|
2月前
|
JavaScript 前端开发 开发者
JavaScript 类继承
JavaScript 类继承
19 1