javascript 继承机制

<script type="text/javascript">
/*对象继承机制*/
/*----------------------------构造函数绑定----------------------------*/


function Animal(){
this.species="动物";
}
function Cat(name,color){
Animal.apply(this,arguments);
this.name=name;
this.color=color;
}


/*var cat1=new Cat("猫","yellow");
console.log(cat1.species+'----------构造函数绑定');*/




/*----------------------------prototype 对象继承---------------------------*/


Cat.prototype=new Animal();
Cat.prototype.constructor=Cat;
console.log(Cat.prototype.constructor==Cat);
var cat2=new Cat('dog','red');
console.log(cat2.constructor);/*每个实例也有也有一constructor 属性,默认调用prototype对象的contructor属性。*/
console.log(cat2.species);


/*----------------------------prototype 对象继承2---------------------------*/


function Animal2(){


};


function Dog(name){
this.name=name;
}
Animal2.prototype.species='动物 2';


Dog.prototype=Animal2.prototype;
Dog.prototype.constructor=Dog;
var dog=new Dog("dog1");
console.log(dog.constructor);
console.log(dog.species+'------------');


/*---------------------------- 空对象作为介质 对象继承---------------------------*/


function Animal3(){


};


Animal3.prototype.species='动物 3';


function F(){};
F.prototype=Animal3.prototype;
Dog.prototype=new F();
Dog.prototype.constructor=Dog;
var dog2=new Dog('dog2');
console.log(dog2.species);


/*可以将上面方法封装成一个函数*/


function extend(Parent,Child){
var F=function(){};
F.prototype=Parent.prototype;
Child.prototype=new F();
Child.prototype.constructor=Child;
Child.uber=Parent.prototype;
};


extend(Animal3,Dog);
var dog3=new Dog('dog3');
console.log(dog3.species+'-----extend 方法实现');
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值