为了账号安全,请及时绑定邮箱和手机立即绑定

javascript实现继承的几种方式

标签:
JavaScript

  1. 对象冒充(多继承):
    a. 代码:

    function ClassA(sColor) {this.color = sColor;this.sayColor = function () {    console.log(this.color);};}function ClassB(sName) {this.name = sName;this.sayName = function () {    console.log(this.name);};}function ClassC(sColor, sName) {this.newMethod = ClassA;this.newMethod(sColor);delete this.newMethod;this.newMethod = ClassB;this.newMethod(sName);delete this.newMethod;}var objA = new ClassA("blue");var objC = new ClassC("red", "John");objA.sayColor();objC.sayColor();objC.sayName();

    b. 输出:

    blueredJohn
  2. call()方法(推荐):
    a. 代码:

    function ClassA(sColor) {this.color = sColor;this.sayColor = function () {    console.log(this.color);};}function ClassB(sName) {this.name = sName;this.sayName = function () {    console.log(this.name);};}function ClassC(sColor, sName) {ClassA.call(this,sColor)ClassB.call(this,sName)}var objA = new ClassA("blue");var objC = new ClassC("red", "John");objA.sayColor();objC.sayColor();objC.sayName();

    b. 输出:

    blueredJohn
  3. apply()方法(推荐):
    a. 代码:

    function ClassA(sColor) {this.color = sColor;this.sayColor = function () {    console.log(this.color);};}function ClassB(sName) {this.name = sName;this.sayName = function () {    console.log(this.name);};}function ClassC(sColor, sName) {ClassA.apply(this,new Array(sColor))ClassB.apply(this,new Array(sName))}var objA = new ClassA("blue");var objC = new ClassC("red", "John");objA.sayColor();objC.sayColor();objC.sayName();

    b. 输出:

    blueredJohn
  4. 原型链(单继承):
    a. 代码:

    function ClassA(color) {this.color = colorthis.sayColor = function () {    console.log(this.color);};}function ClassB(name) {this.name = namethis.sayName = function () {    console.log(this.name);};}ClassB.prototype = new ClassA("red");var objA = new ClassA("blue");var objB = new ClassB("John");objA.sayColor();objB.sayColor();objB.sayName();

    b. 输出:

    blueredJohn
  5. 混用对象冒充与原型链(多继承):
    a. 代码:

    function ClassA(sColor) {this.color = sColor;this.sayColor = function(){    console.log(this.color)}}function ClassB(sName) {this.name = sName;this.sayName = function(){    console.log(this.name)}}function ClassC(sColor, sName) {ClassA.call(this, sColor);ClassB.call(this, sName);}ClassC.prototype = new ClassA();ClassC.prototype = new ClassB();var objA = new ClassA("blue");var objC = new ClassC("red", "John");objA.sayColor();objC.sayColor();objC.sayName();

    b. 输出:

    blueredJohn
  6. 说明:

    推荐使用call()方法或apply()方法

点击查看更多内容
TA 点赞

若觉得本文不错,就分享一下吧!

评论

作者其他优质文章

正在加载中
  • 推荐
  • 评论
  • 收藏
  • 共同学习,写下你的评论
感谢您的支持,我会继续努力的~
扫码打赏,你说多少就多少
赞赏金额会直接到老师账户
支付方式
打开微信扫一扫,即可进行扫码打赏哦
今天注册有机会得

100积分直接送

付费专栏免费学

大额优惠券免费领

立即参与 放弃机会
意见反馈 帮助中心 APP下载
官方微信

举报

0/150
提交
取消