Javascript簡(jiǎn)單實(shí)現(xiàn)面向?qū)ο缶幊汤^承實(shí)例代碼
復(fù)制代碼 代碼如下:
function Polygon(iSliders){ //定義一個(gè)多邊形
this.silders=iSliders;
}
Polygon.prototype.getArea=function(){ //為多邊形定義一個(gè)去的面積的.方法
return 0;
}
function Triangle(iBase,iHeight){
Polygon.call(this,3); //繼承多邊形對(duì)象
this.base=iBase;
this.height=iHeight;
}
Triangle.prototype.getArea=function(){ //重寫去的面積的方法
return 0.5*this.base*this.height;
}
var triangle=new Triangle(15,8); //實(shí)例化一個(gè)三角形
alert("邊數(shù):"+triangle.silders);
alert("面積:"+triangle.getArea());