码迷,mamicode.com
首页 > 其他好文 > 详细

构造函数继承

时间:2014-12-04 13:31:07      阅读:157      评论:0      收藏:0      [点我收藏+]

标签:style   blog   io   ar   color   sp   strong   on   div   

function SuperType(){

this.colors = [1,2,3];

}

 

function SubType(){

//继承属性

SuperType.call(this);

}

 

var in1 = new SubType();

in1.colors.push(4);

alert(in1.colors);

 

var in2 = new SubType();

in2.colors.push(5);

alert(in2.colors);

 

在子类构造函数中执行超类的函数,则子类的实例中都会有自己的colors属性副本

 

参数式继承

function SuperType(name){

this.name = name;

}

 

function SubType(name){

//继承属性

SuperType.call(this,name);

}

 

var in1 = new SubType("Jack");

alert(in1.name);  //jack

 

var in2 = new SubType("gogo");

alert(in2.name); //gogo

优点:每个子类实例都有自己的属性副本

缺点:无法复用函数

构造函数继承

标签:style   blog   io   ar   color   sp   strong   on   div   

原文地址:http://www.cnblogs.com/lcw5945/p/4142482.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!