Number.__proto__ === Function.prototype // true Number.constructor == Function //true Boolean.__proto__ === Function.prototype // true Boolean.constructor == Function //true String.__proto__ === Function.prototype // true String.constructor == Function //true // 全部的構造器都來自於Function.prototype,甚至包括根構造器Object及Function自身 Object.__proto__ === Function.prototype // true Object.constructor == Function // true // 全部的構造器都來自於Function.prototype,甚至包括根構造器Object及Function自身 Function.__proto__ === Function.prototype // true Function.constructor == Function //true Array.__proto__ === Function.prototype // true Array.constructor == Function //true RegExp.__proto__ === Function.prototype // true RegExp.constructor == Function //true Error.__proto__ === Function.prototype // true Error.constructor == Function //true Date.__proto__ === Function.prototype // true Date.constructor == Function //true
JavaScript中有內置(build-in)構造器/對象共計12個(ES5中新加了JSON),這裏列舉了可訪問的8個構造器。剩下如Global不能直接訪問,Arguments僅在函數調用時由JS引擎建立,Math,JSON是以對象形式存在的,無需new。它們的proto是Object.prototype。以下javascript
Math.__proto__ === Object.prototype // true Math.construrctor == Object // true JSON.__proto__ === Object.prototype // true JSON.construrctor == Object //true
上面說的函數對象固然包括自定義的。以下java
// 函數聲明 function Person() {} // 函數表達式 var Perosn = function() {} console.log(Person.__proto__ === Function.prototype) // true console.log(Man.__proto__ === Function.prototype) // true
這說明什麼呢?數組
** 全部的構造器都來自於 Function.prototype
,甚至包括根構造器Object
及Function
自身。全部構造器都繼承了·Function.prototype·的屬性及方法。如length、call、apply、bind**app
(你應該明白第一句話,第二句話咱們下一節繼續說,先挖個坑:))
Function.prototype
也是惟一一個typeof XXX.prototype
爲 function
的prototype
。其它的構造器的prototype
都是一個對象(緣由第三節裏已經解釋過了)。以下(又複習了一遍):函數
console.log(typeof Function.prototype) // function console.log(typeof Object.prototype) // object console.log(typeof Number.prototype) // object console.log(typeof Boolean.prototype) // object console.log(typeof String.prototype) // object console.log(typeof Array.prototype) // object console.log(typeof RegExp.prototype) // object console.log(typeof Error.prototype) // object console.log(typeof Date.prototype) // object console.log(typeof Object.prototype) // object
噢,上面還提到它是一個空的函數,console.log(Function.prototype)
下看看(留意,下一節會再說一下這個)ui
知道了全部構造器(含內置及自定義)的__proto__
都是Function.prototype
,那Function.prototype
的__proto__
是誰呢?
相信都據說過JavaScript中函數也是一等公民,那從哪能體現呢?以下
console.log(Function.prototype.__proto__ === Object.prototype) // true
這說明全部的構造器也都是一個普通 JS 對象,能夠給構造器添加/刪除屬性等。同時它也繼承了Object.prototype上的全部方法:toString、valueOf、hasOwnProperty等。(你也應該明白第一句話,第二句話咱們下一節繼續說,不用挖坑了,仍是剛纔那個坑;))this
最後Object.prototype的proto是誰?
Object.prototype.__proto__ === null // true
已經到頂了,爲null。(讀到如今,再回過頭看第五章,能明白嗎?)spa
在 ECMAScript 核心所定義的所有屬性中,最回味無窮的就要數
prototype
屬性了。對於 ECMAScript 中的引用類型而言,prototype
是保存着它們全部實例方法的真正所在。換句話所說,諸如toString()
和valuseOf()
等方法實際上都保存在prototype
名下,只不過是經過各自對象的實例訪問罷了。prototype
——《JavaScript 高級程序設計》第三版 P116設計
咱們知道 JS 內置了一些方法供咱們使用,好比:
對象能夠用 constructor/toString()/valueOf()
等方法;
數組能夠用 map()/filter()/reducer()
等方法;
數字可用用 parseInt()/parseFloat()
等方法;
Why ???
var Person = new Object()
Person
是 Object
的實例,因此 Person
繼承了Object
的原型對象Object.prototype
上全部的方法:
Person.constructor
也能夠用
Person.hasOwnProperty
。
var num = new Array()
num
是 Array
的實例,因此 num
繼承了Array
的原型對象Array.prototype
上全部的方法:
Are you f***ing kidding me? 這尼瑪怎麼是一個空數組???
Object.getOwnPropertyNames
prototy
中的屬性,返回一個數組:
var arrayAllKeys = Array.prototype; // [] 空數組 // 只獲得 arrayAllKeys 這個對象裏全部的屬性名(不會去找 arrayAllKeys.prototype 中的屬性) console.log(Object.getOwnPropertyNames(arrayAllKeys)); /* 輸出: ["length", "constructor", "toString", "toLocaleString", "join", "pop", "push", "concat", "reverse", "shift", "unshift", "slice", "splice", "sort", "filter", "forEach", "some", "every", "map", "indexOf", "lastIndexOf", "reduce", "reduceRight", "entries", "keys", "copyWithin", "find", "findIndex", "fill"] */
這樣你就明白了隨便聲明一個數組,它爲啥能用那麼多方法了。
細心的你確定發現了Object.getOwnPropertyNames(arrayAllKeys)
輸出的數組裏並無 constructor/hasOwnPrototype
等對象的方法(你確定沒發現)。
可是隨便定義的數組也能用這些方法
var num = [1]; console.log(num.hasOwnPrototype()) // false (輸出布爾值而不是報錯)
Why ???
由於Array.prototype
雖然沒這些方法,可是它有原型對象(__proto__
):
// 上面咱們說了 Object.prototype 就是一個普通對象。 Array.prototype.__proto__ == Object.prototype
因此 Array.prototype
繼承了對象的全部方法,當你用num.hasOwnPrototype()
時,JS 會先查一下它的構造函數 (Array
) 的原型對象 Array.prototype
有沒有有hasOwnPrototype()
方法,沒查到的話繼續查一下 Array.prototype
的原型對象 Array.prototype.__proto__
有沒有這個方法。
var f = new Function("x","return x*x;"); //固然你也能夠這麼建立 f = function(x){ return x*x } console.log(f.arguments) // arguments 方法從哪裏來的? console.log(f.call(window)) // call 方法從哪裏來的? console.log(Function.prototype) // function() {} (一個空的函數) console.log(Object.getOwnPropertyNames(Function.prototype)); /* 輸出 ["length", "name", "arguments", "caller", "constructor", "bind", "toString", "call", "apply"] */
咱們再複習第八小節這句話:
全部函數對象proto都指向
Function.prototype
,它是一個空函數(Empty function)
嗯,咱們驗證了它就是空函數。不過不要忽略前半句。咱們枚舉出了它的全部的方法,因此全部的函數對象都能用,好比:
若是你還沒搞懂啥是函數對象?
還有,我建議你能夠再複習下爲何:
Function.prototype
是惟一一個typeof XXX.prototype爲 「function」的prototype
我猜你確定忘了。
第八小節咱們總結了:
全部函數對象的 __proto__ 都指向 Function.prototype,它是一個空函數(Empty function)
可是你可別忘了在第三小節咱們總結的:
全部對象的 __proto__ 都指向其構造器的 prototype
咦,我找了半天怎麼沒找到這句話……
咱們下面再複習下這句話。
先看看 JS 內置構造器:
var obj = {name: 'jack'} var arr = [1,2,3] var reg = /hello/g var date = new Date var err = new Error('exception') console.log(obj.__proto__ === Object.prototype) // true console.log(arr.__proto__ === Array.prototype) // true console.log(reg.__proto__ === RegExp.prototype) // true console.log(date.__proto__ === Date.prototype) // true console.log(err.__proto__ === Error.prototype) // true
再看看自定義的構造器,這裏定義了一個 Person
:
function Person(name) { this.name = name; } var p = new Person('jack') console.log(p.__proto__ === Person.prototype) // true
p
是 Person
的實例對象,p
的內部原型老是指向其構造器 Person
的原型對象 prototype
。
每一個對象都有一個 constructor
屬性,能夠獲取它的構造器,所以如下打印結果也是恆等的:
function Person(name) { this.name = name } var p = new Person('jack') console.log(p.__proto__ === p.constructor.prototype) // true
上面的Person
沒有給其原型添加屬性或方法,這裏給其原型添加一個getName
方法:
function Person(name) { this.name = name } // 修改原型 Person.prototype.getName = function() {} var p = new Person('jack') console.log(p.__proto__ === Person.prototype) // true console.log(p.__proto__ === p.constructor.prototype) // true
能夠看到p.__proto__
與Person.prototype
,p.constructor.prototype
都是恆等的,即都指向同一個對象。
若是換一種方式設置原型,結果就有些不一樣了:
function Person(name) { this.name = name } // 重寫原型 Person.prototype = { getName: function() {} } var p = new Person('jack') console.log(p.__proto__ === Person.prototype) // true console.log(p.__proto__ === p.constructor.prototype) // false
這裏直接重寫了 Person.prototype
(注意:上一個示例是修改原型)。輸出結果能夠看出p.__proto__
仍然指向的是Person.prototype
,而不是p.constructor.prototype
。
這也很好理解,給Person.prototype
賦值的是一個對象直接量{getName: function(){}}
,使用對象直接量方式定義的對象其構造器(constructor
)指向的是根構造器Object
,Object.prototype
是一個空對象{}
,{}
天然與{getName: function(){}}
不等。以下:
var p = {} console.log(Object.prototype) // 爲一個空的對象{} console.log(p.constructor === Object) // 對象直接量方式定義的對象其constructor爲Object console.log(p.constructor.prototype === Object.prototype) // 爲true,不解釋(๑ˇ3ˇ๑)
下面這個例子你應該能明白了!
function Person(){} var person1 = new Person(); console.log(person1.__proto__ === Person.prototype); // true console.log(Person.prototype.__proto__ === Object.prototype) //true console.log(Object.prototype.__proto__) //null Person.__proto__ == Function.prototype; //true console.log(Function.prototype)// function(){} (空函數) var num = new Array() console.log(num.__proto__ == Array.prototype) // true console.log( Array.prototype.__proto__ == Object.prototype) // true console.log(Array.prototype) // [] (空數組) console.log(Object.prototype.__proto__) //null console.log(Array.__proto__ == Function.prototype)// true
疑點解惑:
Object.__proto__ === Function.prototype // true
Object
是函數對象,是經過new Function()
建立的,因此Object.__proto__
指向Function.prototype
。(參照第八小節:「全部函數對象的__proto__
都指向Function.prototype
」)
Function.__proto__ === Function.prototype // true
Function
也是對象函數,也是經過new Function()
建立,因此Function.__proto__
指向Function.prototype
。
本身是由本身建立的,好像不符合邏輯,但仔細想一想,現實世界也有些相似,你是怎麼來的,你媽生的,你媽怎麼來的,你姥姥生的,……類人猿進化來的,那類人猿從哪來,一直追溯下去……,就是無,(NULL生萬物)
正如《道德經》裏所說「無,名天地之始」。
Function.prototype.__proto__ === Object.prototype //true
其實這一點我也有點困惑,不過也能夠試着解釋一下。
Function.prototype
是個函數對象,理論上他的__proto__
應該指向Function.prototype
,就是他本身,本身指向本身,沒有意義。
JS一直強調萬物皆對象,函數對象也是對象,給他認個祖宗,指向Object.prototype
。Object.prototype.__proto__ === null
,保證原型鏈可以正常結束。
__proto__
而非prototype
要深刻理解這句話,咱們再舉個例子,看看前面你真的理解了嗎?
var animal = function(){}; var dog = function(){}; animal.price = 2000; dog.prototype = animal; var tidy = new dog(); console.log(dog.price) //undefined console.log(tidy.price) // 2000
這裏解釋一下:
var dog = function(){}; dog.prototype.price = 2000; var tidy = new dog(); console.log(tidy.price); // 2000 console.log(dog.price); //undefined
var dog = function(){}; var tidy = new dog(); tidy.price = 2000; console.log(dog.price); //undefined
這個明白吧?想想咱們上面說過這句話:
實例(
tidy
)和 原型對象(dog.prototype
)存在一個鏈接。不過,要明確的真正重要的一點就是,這個鏈接存在於實例(tidy
)與構造函數的原型對象(dog.prototype
)之間,而不是存在於實例(tidy
)與構造函數(dog
)之間。
聰明的你確定想通了吧