- 相關(guān)推薦
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());
【Javascript簡(jiǎn)單實(shí)現(xiàn)面向?qū)ο缶幊汤^承實(shí)例代碼】相關(guān)文章:
關(guān)jQuery彈出窗口簡(jiǎn)單實(shí)現(xiàn)代碼-javascript編程06-07
javascript面向?qū)ο笾械膶?duì)象怎么理解09-02
JavaScript實(shí)現(xiàn)網(wǎng)頁(yè)刷新代碼段08-07
常用排序算法之JavaScript實(shí)現(xiàn)代碼段06-04
2016年java面向?qū)ο缶幊填}庫(kù)及答案10-24
高效編寫JavaScript代碼的技巧08-25
在Java中執(zhí)行JavaScript代碼07-14
JavaScript fontcolor方法入門實(shí)例07-07
數(shù)控編程代碼大全05-18
ASP編程實(shí)例大全05-29