原型與原型鏈關係貫穿JavaScript
中的對象,而JavaScript
中萬物皆對象,所以原型與原型鍊是比較重要的概念,今天就帶大家一起來看看JavaScript
中的原型與原型鏈。
一、了解概念(知道有這兩個名詞即可)
原型(<em>prototype</em>
)
#原型鏈(__<em>proto__</em>
)
二、了解從屬關係
prototype => 函数的一个属性 : 同时也是一个 对象{} (称之为原型对象亦可) __proto__ => 对象Object的一个属性 : 同时也是一个 对象{} (__proto__也就是[[Prototype]])
#註:物件的__proto__保存著該物件的建構子的prototype
# a.宣告一個建構函數
function Test() { } //prototype 是函数的一个属性 console.dir(Test); console.log(Test.prototype); // Test.prototype也是一个对象 console.log(typeof Test.prototype);
b.宣告一個物件
#const test = new Test(); console.log(test); //验证test为一个对象 console.log(typeof test); //__proto__是对象的一个属性 console.log(test.__proto__); console.log(Test.prototype); //对象的__proto__属性存储着Test.prototype console.log(test.__proto__ === Test.prototype); // test.__proto__也是一个对象 console.log(typeof test.__proto__);
function Test() {} console.log(Test.prototype); //验证函数是否有prototype属性 let test = new Test(); console.dir(test.__proto__); //验证对象是否有__proto__属性 console.log(test.__proto__ === Test.prototype);//验证对象的__ptoto__是否保存着该对象的构造函数的prototype console.log(Test.prototype.__proto__ === Object.prototype);//Test.prototype(是一个对象)的__proto__属性是否是对象的原型属性 console.log(Object.prototype.__proto__);//原型链的顶层没有__proto__属性 null
#b.三、深入認識原型鏈、原型與原型繼承
function Test(){} let test =new Test(); test.a= 10; //test.__proto__ === test.constructor.prototype test.__proto__.b1=11;//对象的__proto__属性存储着对象构造函数的prototype属性 Test.prototype.b2=11; test.__proto__.__proto__.c1=12; Object.prototype.c2=12; console.log(test); console.log(Test.prototype); console.log(Object.prototype.__proto__); /*逐层解析 * test{ * a = 10 * __proto__:Test.prototype{ * b = 11 * __proto__:Object.prototype{ * c = 12 * X__prototype__:null * } * } * } * * */
#四、總結
不建議直接用__proto__
存取。
可以簡單概括為以<span style="color: rgb(0, 0, 0);">prototype</span>
#為原型節點, <span style="color: rgb(0, 0, 0);">__proto__</span>
為原型鏈條。
每個實例物件(<span style="color: rgb(0, 0, 0);">object</span>
)都有一個私有屬性(稱為<span style="color: rgb(0, 0, 0);">__proto__</span>
)指向它的建構函式的原型物件(<span style="color: rgb(0, 0, 0);">prototype</span>
)。這個原型物件也有一個自己的原型物件(<span style="color: rgb(0, 0, 0);">__proto__</span>
),層層向上直到一個物件的原型物件為 <span style="color: rgb(0, 0, 0);">null</span>
。根據定義,<span style="color: rgb(0, 0, 0);">null</span>
沒有原型,並作為這個原型鏈中的最後一個環節。
<span style="color: rgb(0, 0, 0);">someObject.[[Prototype]]</span>
符號是用來指<span style="color: rgb(0, 0, 0);">someObject</span>
的原型,<span style="color: rgb(0, 0, 0);">someObject.[[Prototype]]</span>
# === <span style="color: rgb(0, 0, 0);">__proto__</span>
#( JavaScript的非標準但許多瀏覽器實現的屬性)。
<span style="color: rgb(0, 0, 0);">Object.prototype</span>
#屬性表示<span style="color: rgb(0, 0, 0);">Object</span>
的原型對象。
被建構函數所建立的實例物件的<span style="color: rgb(0, 0, 0);">[[Prototype]]</span>
指向<span style="color: rgb(0, 0, 0);">func</span>
#的<span style="color: rgb(0, 0, 0);">prototype</span>
屬性。
推薦影片:《JavaScript極速入門_玉女心經系列》、《獨孤九賤(6)_jQuery影片教學》
#以上是藕斷絲連,JavaScript中的原型與原型鏈的詳細內容。更多資訊請關注PHP中文網其他相關文章!