javascript - 關於繼承的問題
PHP中文网
PHP中文网 2017-06-15 09:21:31
0
2
573
function extend(Child,Parent){
var F=function(){};
F.prototype=Parent.prototype;
Child.prototype=new F();
Child.prototype.constructor=Child;
Child.uber=Parent.prototype;
}

function Shape(){}
Shape.prototype.name='Shape';
Shape.prototype.toString=function(){
return this.constructor.uber
    ?this.constructor.uber.toString()+', ' + this.name
    :this.name;
};

function TwoDShape(){}
extend(TwoDShape,Shape);
TwoDShape.prototype.name='2D shape';

function Triangle(side,height){
this.side=side;
this.height=height;
}

var F=function(){};
extend(Triangle,TwoDShape);
Triangle.prototype.name='Triangle';
Triangle.prototype.getArea=function(){
return this.side*this.height/2;
};

var Shape=function(){};
var TwoDShape=function(){};
Shape.prototype.name='shape';
Shape.prototype.toString=function(){
return this.uber
?this.uber.toString()+', ' + this.name
:this.name;
};

extend(TwoDShape,Shape);    
var td=new TwoDShape();

td.name;//"shape"

1.為什麼說name屬性既不會是TwoDShape()實例的屬性,也不會成為其原型物件的屬性,但是子物件依然可以透過繼承方式來存取該屬性?

PHP中文网
PHP中文网

认证0级讲师

全部回覆(2)
滿天的星座

因為子物件繼承的是一整條原型鏈,而不是單一原型

伊谢尔伦

掛載在原型鏈上的屬性當然不是

熱門教學
更多>
最新下載
更多>
網站特效
網站源碼
網站素材
前端模板