JavaScript 繼承機制的實現(待續)

來源:互聯網
上載者:User

1.對象冒充
原理:建構函式使用this關鍵字給所有屬性和方法賦值(即採用類聲明的建構函式方式)。
因為建構函式只是一個函數,所以可使ClassA的建構函式成為ClassB的方法,然後調用它。ClassB就會收到ClassA的建構函式中定義的屬性和方法。
例如:
下面方式定義的ClassA和ClassB: 複製代碼 代碼如下:function ClassA(sColor){
this.color=sColor;
this.sayColor=function(){
alert(this.color);
};
}

function ClassB(sColor){
}

關鍵字this引用的是建構函式當前建立的對象。
不過在這個方法中國,this指向的是所屬的對象。這個原理把ClassA作為常規函數來建立繼承機制,而不是作為構造行數。
如下使用建構函式ClassB可以實現繼承機制: 複製代碼 代碼如下:function ClassB(sColor){
this.newMethod=ClassA;
this.newMethod(sColor);
delete this.newMethod;
}

這段代碼中,為(但我覺得這裡應該是"把")ClassA賦予了方法newMethod(記住函數名只是指向它的指標)。然後調用該方法,傳遞給它的是ClassB的建構函式的參數sColor。最後一行代碼刪除了對ClassA的引用,這樣以後就不能再調用它。
所有的新屬性和新方法都必須刪除了新方法的程式碼後定義。否則,可能會覆蓋超類的相關屬性和方法: 複製代碼 代碼如下:function ClassB(sColor,sName){
this.newMethod=classA;
this.newMethod(sColor);
delete this.newMethod;

this.name=sName;
this.sayName=function(){
alert(this.name);
};
}

運行下面的例子: 複製代碼 代碼如下:var objA=new ClassA("red");
var objB=new ClassB("blue","Nicholas");
objA.sayColor();//outputs "red"
objB.sayColor();//outputs "blue"
objB.sayName(); //outputs "Nicholas"

例如,如果存在兩個類ClassX和ClassY,ClassZ想繼承這兩個類,可以使用下面的代碼: 複製代碼 代碼如下:function ClassZ(){
this.newMethod=ClassX;
this.newMethod();
delete this.newMethod;

this.newMethod=ClassY;
this.newMethod();
delete this.newMethod;
}

這裡存在一個弊端,如果ClassX和ClassY具有同名的屬性或方法,ClassY具有高優先順序,因為它從後面繼承。除了這一點小問題外,用對象冒充實現多繼承機制輕而易舉。
由於這種繼承方式的流行,ECMAScript的第三版為Function對象加入了兩個新方法,即call()和apply()。
2.call()方法
call()方法與經典的對象冒充方法最相似的方法。它的第一個參數用作this的對象。其他參數都直接傳遞給函數自身。例如: 複製代碼 代碼如下:function sayColor(sPrefix,sSuffix){
alert(sPrefix+this.color+sSuffix);
};
var obj=new Object();
obj.color="red";
//outputs "The color is red,a very nice color indeed."
sayColor.call(obj,"The color is ",", a very nice color indeed.")

在這個例子中,函數sayColor()在對象外定義,即使它不屬於任何對象,也可以引用關鍵字this。對象的obj的color屬性等於"red"。調用call()方法時,第一個參數是obj,說明
應該賦予sayColor()函數中的this關鍵字的值是obj。第二個和第三個參數是字串。它們與sayColor()函數中的參數prefix和suffix匹配,最後產生訊息"The color is red, a very nice color indeed."
要與繼承機制的對象冒充方法一起使用該方法,只需將前三行的賦值、調用和刪除代碼替換即可: 複製代碼 代碼如下:function ClassB(sColor,sName){
//this.newMethod=classA;
//this.newMethod(sColor);
//delete this.newMethod;
Class.call(this,sColor);

this.name=sName;
this.sayName=function(){
alert(this.name);
};
}

這裡,想讓ClassA中的關鍵字this等於新建立的ClassB對象,因此this是第一個參數。第二個參數sColor對兩個類來說都是唯一的參數。
3.apply()方法
apply()方法有兩個參數,用作this的對象和要傳遞給函數的參數和數組。例如: 複製代碼 代碼如下:function sayColor(sPrefix,sSuffix){
alert(sPrefix+this.color+sSuffix);
};
var obj=new Object();
obj.color="red";

//outputs "The Color is red,a very nice color indeed."
sayColor.apply(obj,new Array("The Color is ",",a very nice color indeed."));

這個例子與前面的例子相同,只是現在調用的是apply()方法。調用apply()方法時,第一個參數仍是obj,說明應該賦予sayColor()中的this關鍵字值是obj。第二個參數是由兩個字串組成的數組,與sayColor()的參數prefix和suffix匹配。產生的訊息仍是
"The Color is red,a nice color indeed."
該方法也用於替換前三行的賦值、調用和刪除新方法的代碼: 複製代碼 代碼如下:function ClassB(sColor,sName){

//this.newMethod=classA;
//this.newMethod(sColor);
//delete this.newMethod;
ClassA.apply(this,new Array(sColor));

this.name=sName;
this.sayName=function(){
alert(this.name);
};
}

同樣的,第一個參數仍是this。第二個參數是只有一個值color的數組。可以把ClassB的整個arguments對象作為第二個參數傳遞給apply()方法: 複製代碼 代碼如下:function ClassB(sColor,sName){

//this.newMethod=classA;
//this.newMethod(sColor);
//delete this.newMethod;
ClassA.apply(this,arguments);

this.name=sName;
this.sayName=function(){
alert(this.name);
};
}

當然,只有超類中的參數順序與子類中的參數順序完全一致時才可以傳遞參數對象。如果不是,就必須建立一個單獨的數組,按照正確的順序放置參數。此外,還可以使用call()方法。

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在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.