以一個最簡單的例子把OO的JavaScript說明白

來源:互聯網
上載者:User
javascript  

OO的JavaScript並不高深,麻煩就麻煩在google出來的國人介紹文章經常羅羅嗦嗦,而且之間的說法還各有不同,擺在一起就讓人看了頭大。
這裡重拾簡單主義,以一個最簡單的例子把OO Javascript說明白。

1.一個頗為精簡的例子

//定義Circle類
function Circle(radius)
{  
  this.r = radius;
}
Circle.PI = 3.14159;
Circle.prototype.area = function(  ) {return Circle.PI * this.r * this.r;}

//使用Circle類
var c = new Circle(1.0);  
alert(c.area());

只需理解三個關鍵字:
第一個是function , JS世界裡類的定義用"function", 裡面的內容是建構函式的內容.

第二個是this指標, 代表調用這個函數的對象

第三個是prototype, 用它來定義成員函數, 比較規範和保險
另外還可以寫成這樣:
function compute_area(){return Circle.PI * this.r * this.r;}
Circle.prototype.area=compute_area;

2.繼承

//定義
function ChildCircle(radius)
{  
     this.base=Circle;
     this.base(radius);
}

ChildCircle.prototype=new Circle(0);
function Circle_max(a,b)
{
    if (a.r > b.r) return a;

    else return b;
}
ChildCircle.max = Circle_max;
//使用



var d = new ChildCircle(2);  
var bigger = d.max(c,d);
alert(bigger.area());

注意兩點
1.定義繼承關係 ChildCircle.prototype=new Circle(0); 其中0是佔位用的
2.調用父類建構函式 
     this.base=Circle;
     this.base(radius);

3.var式定義
JS還支援一種var Circle={raidus:1.0,PI:3.1415}的形式,就如CSS的定義
因此Circle還可以定義為

var newCircle=
{
r:1.0,
PI:3.1415,
area: function(){ return this.PI * this.r * this.r;}
};
alert(newCircle.area());
BTW.吃飽了撐著可以看看Rails帶的OO Javascript庫--Prototype


相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.