javascript 繼承實現方法_javascript技巧

來源:互聯網
上載者:User
下面我給出幾種常用的方法:
1 .對象冒充
原理: 建構函式使用this關鍵字給所有屬性和方法賦值, 因為建構函式只是一個函數,所以可以使ClassA的建構函式成為classB的方法,然後調用它.這樣classB就會收到classA的建構函式中定義的屬性和方法.例子:
複製代碼 代碼如下:

function classA(name)
{
this.name=name;
this.showName=function(){alert(this.name);}
}
function classB(name)
{
this.newMethod = classA;
this.newMethod(name);
}
obj = new classA("hero");
objB = new classB("dby");
obj.showName(); // print hero
objB.showName(); // print dby 說明classB 繼承了classA的方法.

對象冒充可以實現多重繼承 例如
複製代碼 代碼如下:

function classz(){
this.newMethod = classX;
this.newMethod();
delete this.newMethod;
this.newMethod=classY;
this.newMethod():
delete this.newMethod;
}

但是如果classX和classY有相同的屬性或者方法,classY具有高優先順序.
2.call()方法
call方法使與經典的對象冒充法就相近的方法,它的第一個參數用作this的對象,其他參數都直接傳遞給函數自身.
複製代碼 代碼如下:

function sayName(perfix)
{
alert(perfix+this.name);
}
obj= new Object();
obj.name="hero";
sayName.call(obj,"hello," );
function classA(name)
{
this.name=name;
this.showName=function(){alert(this.name);};
}
function classB(name)
{
classA.call(this,name);
}
objB = new classB("bing");
objB.showName();////說明classB繼承classA的showName方法

3.apply()方法
aplly()方法有2個參數,一個用作this對象,一個使傳遞給函數的參數數組.
複製代碼 代碼如下:

function sayName(perfix)
{
alert(perfix+this.name);
}
obj= new Object();
obj.name="hero";
sayName.aplly(obj,new Array("hello,") );

4. 原型鏈
prototype對象的任何屬性和方法都會被傳遞給對應類的所有執行個體,原型鏈就是用這種方式來顯現繼承.
複製代碼 代碼如下:

function classA (){}
classA.prototype.name="hero";
classA.prototype.showName=function(){alert(this.name)}
function classB(){}
classB.prototype=new classA();
objb = new classB()
objb.showName();//print hero 說明b繼承了a的方法

這裡需要注意 調用classA的建構函式時,沒有給它傳遞參數,這是原型鏈的標準做法,確保函數的建構函式沒有任何參數.
並且 子類的所有屬性和方法,必須出現在prototype屬性被賦值後,應為在它之前賦的值會被刪除.因為對象的prototype屬性被替換成了新對象,添加了新方法的原始對象將被銷毀.

5 混和方式
就是用冒充方式 定義建構函式屬性,用原型法定義對象方法.
複製代碼 代碼如下:

function classA(name)
{
this.name=name;
}
classA.prototype.showName=function(){alert(this.name)}
function classB(name)
{
classA.call(this,name);
}
classB.prototype = new classA();
classB.prototype.showName1=function(){alert(this.name+"*****");};
obj = new classB("hero");
obj.showName();
obj.showName1();

在classB的建構函式中通過調用call方法 繼承classA中的name屬性,用原型鏈來繼承classA的showName方法.
相關文章

聯繫我們

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