每日前端一問--js中的_proto_和prototype的區別

js中的_proto_和prototype

首先指出_proto_並非全部瀏覽器都支持,每一個瀏覽器可能有不一樣的實現,就是書中的[[property]]。瀏覽器

1、全部構造器/函數的__proto__都指向Function.prototype,它是一個空函數(Empty function)bash

對於這一點可能會了解少一點,通常會首先會想到構造器/函數的prototype,指向該原型。直接上代碼。app

Number.__proto__ === Function.prototype  // true
Boolean.__proto__ === Function.prototype // true
String.__proto__ === Function.prototype  // true
Object.__proto__ === Function.prototype  // true
Function.__proto__ === Function.prototype // true
Array.__proto__ === Function.prototype   // true
RegExp.__proto__ === Function.prototype  // true
Error.__proto__ === Function.prototype   // true
Date.__proto__ === Function.prototype    // true
複製代碼

JavaScript中有內置(build-in)構造器/對象共計12個(ES5中新加了JSON)固然ES6也有新增(Set,Map等),這裏列舉了可訪問的8個構造器。剩下如Global不能直接訪問,Arguments僅在函數調用時由JS引擎建立,Math,JSON是以對象形式存在的,無需new。它們的__proto__是Object.prototype。以下:函數

Math.__proto__ === Object.prototype  // true
JSON.__proto__ === Object.prototype  // true
複製代碼

前面說的「全部構造器/函數」固然包括自定義的。以下:測試

// 函數聲明
function MyObject() {}
// 函數表達式
var Man = function() {}
console.log(MyObject.__proto__ === Function.prototype) // true
console.log(Man.__proto__ === Function.prototype)    // true
複製代碼

這就說明一點:全部的構造器都來自於Function.prototype,甚至包括根構造器Object及Function自身。全部構造器都繼承了Function.prototype的屬性及方法。如length、call、apply、bind(ES5)。ui

Function.prototype也是惟一一個typeof XXX.prototype爲 「function」的prototype。其它的構造器的prototype都是一個對象。以下:this

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
複製代碼

上面還提到它是一個空的函數,能夠alert(Function.prototype) 下看看。spa

知道了全部構造器(含內置及自定義)的__proto__都是Function.prototype,那Function.prototype的__proto__是誰呢?prototype

相信都據說過JavaScript中函數也是一等公民,那從哪能體現呢?以下code

console.log(Function.prototype.__proto__ === Object.prototype) // true
複製代碼

這說明全部的構造器也都是一個普通JS對象,能夠給構造器添加/刪除屬性等。同時它也繼承了Object.prototype上的全部方法:toString、valueOf、hasOwnProperty等。

最後Object.prototype的__proto__是誰?

Object.prototype.__proto__ === null  // true
複製代碼

2、全部對象的__proto__都指向其構造器的prototype

上面測試了全部內置構造器及自定義構造器的__proto__,下面再看看全部這些構造器的實例對象的__proto__指向誰?直接上代碼:

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 MyObject(name) {
    this.name = name
}
var obj = new Person('jack')
console.log(obj.__proto__ === MyObject.prototype) // true
複製代碼

obj是MyObject的實例對象,obj的內部原型老是指向其構造器MyObject的prototype。

上面代碼中用到的__proto__目前在IE6/7/8/9中都不支持。IE9中能夠使用Object.getPrototypeOf(ES5)獲取對象的內部原型。上代碼:

var p = {}
var __proto__ = Object.getPrototypeOf(p)
console.log(__proto__ === Object.prototype) // true
複製代碼
相關文章
相關標籤/搜索