【JavaScript】關於JS中的constructor與prototype

最初對js中 object.constructor 的認識:javascript

 

 

 

 

 

 

 

在學習JS的面向對象過程當中,一直對constructor與prototype感到很迷惑,看了一些博客與書籍,以爲本身弄明白了,如今記錄以下:html

     咱們都知道,在JS中有一個function的東西。通常人們叫它函數。好比下面的代碼java

 

function Person(name)   
{   
  alert(name);   
}   
Person('js');//js  

 


 

上面的代碼中,Person的表現的確跟通常的函數沒有什麼區別,接着看下面的代碼c++

 

複製代碼
代碼
function Person(name)   
{   
   this.name=name;   
   this.showMe=function()   
        {   
           alert(this.name);   
        }   
};   
var one=new Person('JavaScript');   
one.showMe();//JavaScript  
複製代碼

 


 

不少人見到了久違的new操做符,因而就叫Person爲「類」,但是又沒有關鍵字class的出現,以爲叫「類」有點勉強。因而退而求其次叫Person爲類的構造函數。這些概念好像都沒有錯,之因此出現這樣的狀況,多是由於你們都學習了傳統的面嚮對象語言(c++,c#,java等),還有一種思惟定勢吧。爲了讓javascript也面向對象,要在javascript中找到與傳統面嚮對象語言的影子。但是按照javascript的說法,function定義的這個Person就是一個Object(對象),並且仍是一個很特殊的對象,這個使用function定義的對象與使用new操做符生成的對象之間有一個重要的區別。這個區別就是function定義的對象有一個prototype屬性,使用new生成的對象就沒有這個prototype屬性c#

    prototype屬性又指向了一個prototype對象,注意prototype屬性prototype對象是兩個不一樣的東西,要注意區別。在prototype對象中又有一個constructor屬性,這個constructor屬性一樣指向一個constructor對象,而這個constructor對象偏偏就是這個function函數自己。函數

有點頭暈,看下圖吧:學習

 

不相信能夠看下面的代碼:this

 

複製代碼
代碼
function Person(name)   
{   
   this.name=name;   
   this.showMe=function()   
        {   
           alert(this.name);   
        }   
};   
  
var one=new Person('js');   
  
alert(one.prototype)//undefined   
alert(typeof Person.prototype);//object   
alert(Person.prototype.constructor);//function Person(name) {...};  
複製代碼

 


 

上面的代碼證實了one這個對象沒有prototype屬性。spa

咱們接着看代碼:.net

 

複製代碼
代碼
function Person(name)   
{   
   this.name=name;   
   this.showMe=function()   
        {   
           alert(this.name);   
        }   
};   
  
Person.prototype.from=function()   
{   
  alert('I come from prototype.');   
}   
  
var one=new Person('js');   
  
one.showMe();//js,這個結果沒有什麼好奇怪的   
one.from();//I come from prototype.,這個結果有一點奇怪吧  
複製代碼

 

 

要解釋這個結果就要仔細研究一下new這個操做符了.var one=new Person('js');這個語句執行的過程能夠分紅下面的語句:

 

var one={};   
Person.call(one,'js');  

 

 

按照《悟透javascript》書中說的,new形式建立對象的過程實際上能夠分爲三步:

第一步是創建一個新對象(叫A吧);

第二步將該對象(A)內置的原型對象設置爲構造函數(就是Person)prototype 屬性引用的那個原型對象;

第三步就是將該對象(A)做爲this 參數調用構造函數(就是Person),完成成員設置等初始化工做。

其中第二步中出現了一個新名詞就是內置的原型對象,注意這個新名詞跟prototype對象不是一回事,爲了區別我叫它inobj,inobj就指向了函數Person的prototype對象。在person的prototype對象中出現的任何屬性或者函數均可以在one對象中直接使用,這個就是javascript中的原型繼承了

又頭暈了,上圖吧!

 

這樣one對象經過內置的原型對象inobj就能夠直接訪問Person的prototype對象中的任何屬性與方法了。這也就解釋了上面的代碼中爲何one能夠訪問form函數了。由於prototype對象中有一個constructor屬性,那麼one也能夠直接訪問constructor屬性。

 

 

複製代碼
代碼
function Person(name)   
{   
   this.name=name;   
   this.showMe=function()   
        {   
           alert(this.name);   
        }   
};   
  
Person.prototype.from=function()   
{   
  alert('I come from prototype.');   
}   
  
var one=new Person('js');   
  
one.showMe();//js,這個結果沒有什麼好奇怪的   
one.from();//I come from prototype.,這個結果有一點奇怪吧   
alert(one.constructor);//function Person(name) {...}   
alert(Person.prototype.constructor);//function Person(name) {...}  

 

複製代碼

 


 


 接着看繼承是如何實現的。

 

複製代碼
代碼
function Person(name)   
{   
   this.name=name;   
   this.showMe=function()   
        {   
           alert(this.name);   
        }   
};   
  
Person.prototype.from=function()   
{   
  alert('I come from prototype.');   
}   
  
function SubPerson()   
{   
}   
SubPerson.prototype=new Person();   
  
var subOne=new SubPerson();   
subOne.from();//I come from prototype.   
alert(subOne.constructor);//function Person(name) {...};   
alert(SubPerson.prototype.constructor);//function Person(name) {...};  
複製代碼

 


繼承的實現很簡單,只須要把子類的prototype設置爲父類的一個(實例化)對象便可。注意這裏說的但是對象哦!

 那麼經過prototype屬性實現繼承的原理是什麼呢?仍是先看圖形說明,而後編寫代碼進行驗證。

 

 

 

注意:紅色的方框就是把子類與父類連接起來的地方。這個就應該是傳說中的prototype鏈了吧。下面有代碼進行驗證。

 

複製代碼
代碼
function Person(name)   
{   
   this.name=name;   
   this.showMe=function()   
        {   
           alert(this.name);   
        }   
};   
  
Person.prototype.from=function()   
{   
  alert('I come from prototype.');   
}   
var father=new Person('js');//爲了下面演示使用showMe方法,採用了js參數,實際多采用無參數   
alert(father.constructor);//查看構造函數,結果是:function Person(name) {...};   
function SubPer()   
{   
}   
SubPer.prototype=father;//注意這裏   
SubPer.prototype.constructor=SubPer;   
  
var son=new SubPer();   
son.showMe();//js   
son.from();//I come from prototype.   
alert(father.constructor);//function SubPer(){...}   
alert(son.constructor);//function SubPer(){...}   
alert(SubPer.prototype.constructor);//function SubPer(){...}  
 
複製代碼

 



根據上圖的prototype鏈,還有代碼的結果,我想應該明白爲何使用prototype可以實現

JS中的繼承了吧。

 

 

 

 

摘自:http://blog.csdn.net/niuyongjie/archive/2009/11/15/4810835.aspx

 

http://www.cnblogs.com/qiantuwuliang/archive/2011/01/08/1930548.html

相關文章
相關標籤/搜索