javascript面向对象编程构造函数继承

实现构造函数的继承有五种方法:

现在有“动物”对象的构造函数

function Animal(){

       this.special='动物';

}

“狗”的构造函数

function Dog(name,color){

      this.name=name;

      this.color=color;

}

使“猫”继承“动物”

1. 构造函数绑定

 第一种为最简单的方法,使用call或apply,将父对象的构造函数绑定在子对象上

function Dog(name,color)

{

     Animal.apply(this,arguments);

     this.name=name;

     this.color=color;

}

2. prototype模式

第二种方法更常见 使用prototype属性

如果“狗”的prototype对象,指向一个Animal的实例,那么所有“狗”的实例,就能继承Animal了

Dog.prototype=new Animal();

Dog.prototype.constructor=Dog;

3.直接继承prototype

Dog.prototype=Animal.prototype;

Dog.prototype.constructor=Dog;

这种方法就是不用建立Animal实例,比较节省内存缺点就是Dog.prototype和Animal.prototype指向同一个对象,对Dog的任何修改都会反映到Animal里

4. 利用空对象作为中介

 为了弥补上一个方法的缺陷,我们采用一个空对象作为中介

function extend(Child,Parent)

{

     var  F=function (){};

    F.prototype=Parent.prototype;

   Child.prototype=new F();

   Child.prototype.constructor=Child;

   Child.uber=Parent.prototype;

}

5. 拷贝继承

  function extend(Child,Parent)

 {

     var p=Parent.prototype;

     var c=Child.prototype;

    for(var i in p)

    {

        c[i]=p[i];

     }

    c.uber=p;

}

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值