文章详情

短信预约-IT技能 免费直播动态提醒

请输入下面的图形验证码

提交验证

短信预约提醒成功

JavaScript组合继承的示例分析

2023-06-25 12:59

关注

这篇文章主要为大家展示了“JavaScript组合继承的示例分析”,内容简而易懂,条理清晰,希望能够帮助大家解决疑惑,下面让小编带领大家一起研究并学习一下“JavaScript组合继承的示例分析”这篇文章吧。

原型链继承

父类实例作为子类的原型
子类创造的两个实例的隐式原型__proto__指向父类的那个实例
而父类的实例的隐式原型__proto__又指向父类的原型father.prototype
根据原型链的特性,所有子类的实例能够继承父类原型上的属性。

阅览以下这张图可以配合代码理解清晰:

JavaScript组合继承的示例分析

 //父类    function father() {      this.fatherAttr = ["fatherAttr"];    }        //父类的原型上的属性    father.prototype.checkProto = "checkProto";    //子类    function child() {}    // 将father实例作为child这个构造函数的原型    child.prototype = new father();    child.prototype.constructor = child;    //两个子类实例    const test1 = new child();    const test2 = new child();    console.log("测试1:");    console.log("test1:", test1);    console.log("test2:", test2);    console.log("test1.fatherAttr:", test1.fatherAttr);    console.log("test2.fatherAttr:", test2.fatherAttr);    console.log("测试2:");    test1.fatherAttr.push("newAttr");    console.log("test1.fatherAttr:", test1.fatherAttr);    console.log("test2.fatherAttr:", test2.fatherAttr);    console.log("测试3:");    console.log("test1.checkProto:", test1.checkProto);

JavaScript组合继承的示例分析

特点:

构造函数继承

将父类上的this绑定到子类,也就是当子类创造实例时会在子类内部调用父类的构造函数,父类上的属性会拷贝到子类实例上,所以实例会继承这些属性。

//父类    function father(params) {      this.fatherAttr = ["fatherAttr"];      this.params = params;    }    //父类的原型上的属性    father.prototype.checkProto = "checkProto";    //子类    function child(params) {      father.call(this, params);    }    //两个子类实例    const test1 = new child("params1");    const test2 = new child("params2");    console.log("测试1:");    console.log("test1:", test1);    console.log("test2:", test2);    console.log("test1.fatherAttr:", test1.fatherAttr);    console.log("test2.fatherAttr:", test2.fatherAttr);    console.log("测试2:");    test1.fatherAttr.push("newAttr");    console.log("test1.fatherAttr:", test1.fatherAttr);    console.log("test2.fatherAttr:", test2.fatherAttr);        console.log("测试3:");    console.log("test1.checkProto:", test1.checkProto);

JavaScript组合继承的示例分析

特点:

组合继承

结合原型链继承和构造函数继承,可以根据两种继承特点进行使用。

  //父类    function father(params) {      this.fatherAttr = ["fatherAttr"];      this.params = params;    }    //父类的原型上的属性    father.prototype.checkProto = "checkProto";    //子类    function child(params) {      //第二次调用了父类构造函数      father.call(this, params);    }    // 将father实例作为child构造函数的原型    child.prototype = new father();//第一次调用了父类构造函数    child.prototype.constructor = child;    //两个实例    const test1 = new child("params1");//从这里跳转去子类构造函数第二次调用了父类构造函数    const test2 = new child("params2");    console.log("测试1:");    console.log("test1:", test1);    console.log("test2:", test2);    console.log("test1.fatherAttr:", test1.fatherAttr);    console.log("test2.fatherAttr:", test2.fatherAttr);    console.log("测试2:");    test1.fatherAttr.push("newAttr");    console.log("test1.fatherAttr:", test1.fatherAttr);    console.log("test2.fatherAttr:", test2.fatherAttr);    console.log("测试3:");    console.log("test1.checkProto:", test1.checkProto);    console.log("测试4:");    delete test1.fatherAttr    console.log("test1:", test1);    console.log("test1.fatherAttr:", test1.fatherAttr);

JavaScript组合继承的示例分析

特点:

以上是“JavaScript组合继承的示例分析”这篇文章的所有内容,感谢各位的阅读!相信大家都有了一定的了解,希望分享的内容对大家有所帮助,如果还想学习更多知识,欢迎关注编程网行业资讯频道!

阅读原文内容投诉

免责声明:

① 本站未注明“稿件来源”的信息均来自网络整理。其文字、图片和音视频稿件的所属权归原作者所有。本站收集整理出于非商业性的教育和科研之目的,并不意味着本站赞同其观点或证实其内容的真实性。仅作为临时的测试数据,供内部测试之用。本站并未授权任何人以任何方式主动获取本站任何信息。

② 本站未注明“稿件来源”的临时测试数据将在测试完成后最终做删除处理。有问题或投稿请发送至: 邮箱/279061341@qq.com QQ/279061341

软考中级精品资料免费领

  • 历年真题答案解析
  • 备考技巧名师总结
  • 高频考点精准押题
  • 2024年上半年信息系统项目管理师第二批次真题及答案解析(完整版)

    难度     807人已做
    查看
  • 【考后总结】2024年5月26日信息系统项目管理师第2批次考情分析

    难度     351人已做
    查看
  • 【考后总结】2024年5月25日信息系统项目管理师第1批次考情分析

    难度     314人已做
    查看
  • 2024年上半年软考高项第一、二批次真题考点汇总(完整版)

    难度     433人已做
    查看
  • 2024年上半年系统架构设计师考试综合知识真题

    难度     221人已做
    查看

相关文章

发现更多好内容

猜你喜欢

AI推送时光机
位置:首页-资讯-后端开发
咦!没有更多了?去看看其它编程学习网 内容吧
首页课程
资料下载
问答资讯