真实的国产乱ⅩXXX66竹夫人,五月香六月婷婷激情综合,亚洲日本VA一区二区三区,亚洲精品一区二区三区麻豆

成都創(chuàng)新互聯(lián)網(wǎng)站制作重慶分公司

Javascript中prototype與繼承的關(guān)系是什么

今天就跟大家聊聊有關(guān)Javascript中prototype與繼承的關(guān)系是什么,可能很多人都不太了解,為了讓大家更加了解,小編給大家總結(jié)了以下內(nèi)容,希望大家根據(jù)這篇文章可以有所收獲。

成都網(wǎng)站設計、網(wǎng)站建設、外貿(mào)網(wǎng)站建設介紹好的網(wǎng)站是理念、設計和技術(shù)的結(jié)合。創(chuàng)新互聯(lián)擁有的網(wǎng)站設計理念、多方位的設計風格、經(jīng)驗豐富的設計團隊。提供PC端+手機端網(wǎng)站建設,用營銷思維進行網(wǎng)站設計、采用先進技術(shù)開源代碼、注重用戶體驗與SEO基礎,將技術(shù)與創(chuàng)意整合到網(wǎng)站之中,以契合客戶的方式做到創(chuàng)意性的視覺化效果。

通常來說,javascript中的對象就是一個指向prototype的指針和一個自身的屬性列表。javascript創(chuàng)建對象時采用了寫時復制的理念。

只有構(gòu)造器才具有prototype屬性,原型鏈繼承就是創(chuàng)建一個新的指針,指向構(gòu)造器的prototype屬性。

prototype屬性之所以特別,是因為javascript時讀取屬性時的遍歷機制決定的。本質(zhì)上它就是一個普通的指針。

構(gòu)造器包括:

1.Object
2.Function
3.Array
4.Date
5.String

下面我們來舉一些例子吧

//每個function都有一個默認的屬性prototype,而這個prototype的constructor默認指向這個函數(shù)
//注意Person.constructor 不等于 Person.prototype.constructor. Function實例自帶constructor屬性
functionPerson(name){
this.name = name;
};
Person.prototype.getName =function(){
returnthis.name;
};
var p =newPerson("ZhangSan");
console.log(Person.prototype.constructor===Person);// true
console.log(p.constructor===Person);// true ,這是因為p本身不包含constructor屬性,所以這里其實調(diào)用的是Person.prototype.constructor

我們的目的是要表示

1.表明Person繼承自Animal

2. 表明p2是Person的實例

我們修改一下prototype屬性的指向,讓Person能獲取Animal中的prototype屬性中的方法。也就是Person繼承自Animal(人是野獸) 

functionPerson(name){
this.name = name;
};
Person.prototype.getName =function(){
returnthis.name;
};
var p1 =newPerson("ZhangSan");
console.log(p.constructor===Person);// true
console.log(Person.prototype.constructor===Person);// true
functionAnimal(){}
Person.prototype =newAnimal();//之所以不采用Person.prototype = Animal.prototype,是因為new 還有其他功能,最后總結(jié)。
var p2 =newPerson("ZhangSan");
//(p2 -> Person.prototype -> Animal.prototype, 所以p2.constructor其實就是Animal.prototype.constructor)
console.log(p2.constructor===Person);// 輸出為false ,但我們的本意是要這里為true的,表明p2是Person的實例。此時目的1達到了,目的2沒達到。

但如果我們這么修正

Person.prototype = new Animal();
Person.prototype.constructor = Person;

這時p2.consturctor是對了,指向的是Person,表示p2是Person類的實例,但是新問題出現(xiàn)了。此時目的2達到了,目的1沒達到。

目的1和目的2此時互相矛盾,是因為此時prototype表達了矛盾的兩個意思,

1.表示父類是誰

2.作為自己實例的原型來復制

因此我們不能直接使用prototype屬性來表示父類是誰,而是用getPrototypeOf()方法來知道父類是誰。 

Person.prototype =newAnimal();
Person.prototype.constructor=Person;
var p2 =newPerson("ZhangSan");
p2.constructor//顯示 function Person() {}
Object.getPrototypeOf(Person.prototype).constructor//顯示 function Animal() {}

就把這兩個概念給分開了 ,其實通過使用 hasOwnProperty()方法,什么時候訪問的是實例屬性,什么時候訪問的是原型屬性就一清二楚了

new做了哪些事情?

當代碼var p = new Person()執(zhí)行時,new 做了如下幾件事情:

創(chuàng)建一個空白對象

創(chuàng)建一個指向Person.prototype的指針

將這個對象通過this關(guān)鍵字傳遞到構(gòu)造函數(shù)中并執(zhí)行構(gòu)造函數(shù)。

具體點來說,在下面這段代碼中,

Person.prototype.getName =function(){}

如果我們通過

var person =newPerson();
其實類似于
var person =newObject();
person.getName =Person.prototype.getName;

因此通過person.getName()調(diào)用方法時,this指向的是這個新創(chuàng)建的對象,而不是prototype對象。

這其實在給現(xiàn)有函數(shù)加上新功能的情況下會用到,我們可以這么擴展現(xiàn)有的方法:

//function myFunc 的寫法基本上等于 var myFunc = new Function();
function myFunc (){
}
myFunc =function(func){
  //可以在這里做點其他事情
returnfunction(){
     //可以在這里做點其他事情
return func.apply(this,arguments);
}
}(myFunc)

也可以在Function.prototype方法里直接通過this來訪問上面代碼的myFunc所指向的對象

function myFunc (){
}
if(!Function.prototype.extend){
Function.prototype.extend =function(){
var func =this;
returnfunction(){
func.apply(this,arguments);
}
}
};
var myFunc = myFunc.extend();

總結(jié)一下

如果采用Person.prototype  = Animal.prototype來表示Person繼承自Animal, instanceof方法也同樣會顯示p也是Animal的實例,返回為true.

之所以不采用此方法,是因為下面兩個原因:

1.new 創(chuàng)建了一個新對象,這樣就避免了設置Person.prototype.constructor = Person 的時候也會導致Animal.prototype.constructor的值變?yōu)镻erson,而是動態(tài)給這個新創(chuàng)建的對象一個constructor實例屬性。這樣實例上的屬性constructor就覆蓋了Animal.prototype.constructor,這樣Person.prototype.constructor和Animal.prototype.contructor就分開了。

2.Animal自身的this對象的屬性沒辦法傳遞給Person

但是像下面這樣直接調(diào)用構(gòu)造函數(shù)又可能失敗,或者產(chǎn)生其他影響。

Person.prototype =newAnimal();

為了避免這種情況,所以我們引入了一個中間函數(shù)。所以正確的做法應該是

Person.prototype =(funtion(){
   function F(){};
   F.prototype =Animal.prototype
   returnnew F();
})()

看完上述內(nèi)容,你們對Javascript中prototype與繼承的關(guān)系是什么有進一步的了解嗎?如果還想了解更多知識或者相關(guān)內(nèi)容,請關(guān)注創(chuàng)新互聯(lián)行業(yè)資訊頻道,感謝大家的支持。


名稱欄目:Javascript中prototype與繼承的關(guān)系是什么
URL地址:http://weahome.cn/article/gpijop.html

其他資訊

在線咨詢

微信咨詢

電話咨詢

028-86922220(工作日)

18980820575(7×24)

提交需求

返回頂部