JavaScript 继承的几种方式

发布于 2024-02-20 12:50:53 字数 2037 浏览 21 评论 0

JavaScript 继承本质和原型链有关,原型、实例、构造函数、原型链之间的关系:

一、借助构造函数实现继承

缺点:实例无法访问父类原型上的属性

function Parent1 () {
    this.name = 'parent1';
}
Parent1.prototype.say = function () {

};
function Child1 () {
    Parent1.call(this);
    this.type = 'child1';
}
// Parent1 原型上的 say 没法拿到
console.log(new Child1(), new Child1().say());

二、借助原型链实现继承

缺点:子类和父类公用一个原型,最后导致子类的多个实例都是一样的,无法隔离

function Parent2 () {
    this.name = 'parent2';
    this.play = [1, 2, 3];
}
function Child2 () {
    this.type = 'child2';
}
Child2.prototype = new Parent2();

var s1 = new Child2();
var s2 = new Child2();
s1.play.push(4);
console.log(s1.play, s2.play); // [1, 2, 3, 4] [1, 2, 3,4] 结果是一样的,说明两个实例无法隔离

三、组合继承方式

此方法解决了上面的实例相同的问题,但是父类的构造函数执行了多次

function Parent3 () {
    this.name = 'parent3';
    this.play = [1, 2, 3];
}
function Child3 () {
    Parent3.call(this);
    this.type = 'child3';
}
Child3.prototype = new Parent3(); // 把 Parent3 的实例指向 Child3 的原型
var s3 = new Child3();
var s4 = new Child3();
s3.play.push(4);
console.log(s3.play, s4.play); // [1, 2, 3, 4] [1, 2, 3]

优化组合继承 1:此方法解决了父类的构造函数执行了多次问题,但是无法判断实例是由子类创建的,还是父类创建的

function Parent4 () {
    this.name = 'parent4';
    this.play = [1, 2, 3];
}
function Child4 () {
    Parent4.call(this);
    this.type = 'child4';
}
Child4.prototype = Parent4.prototype; // Child4 和 Parent4 公用一个原型了
var s5 = new Child4();
var s6 = new Child4();
console.log(s5, s6);

console.log(s5 instanceof Child4, s5 instanceof Parent4); // 都是返回 true
console.log(s5.constructor); // 这里返回的构造函数是 Parent4,而不是 Child4,问题所在

优化组合继承 2:完美解决方案

function Parent5 () {
    this.name = 'parent5';
    this.play = [1, 2, 3];
}
function Child5 () {
    Parent5.call(this);
    this.type = 'child5';
}
Child5.prototype = Object.create(Parent5.prototype);
Child5.prototype.constructor = Child5; // 重新修改了 Child5 的构造函数为 Child5

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。
列表为空,暂无数据

关于作者

冷血

暂无简介

0 文章
0 评论
22 人气
更多

推荐作者

謌踐踏愛綪

文章 0 评论 0

开始看清了

文章 0 评论 0

高速公鹿

文章 0 评论 0

alipaysp_PLnULTzf66

文章 0 评论 0

热情消退

文章 0 评论 0

白色月光

文章 0 评论 0

    我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
    原文