JavaScript 中,萬物皆物件!但對像也是有差別的。分為普通物件和函數物件,Object 、Function 是 JS 自帶的函數物件。以下舉例說明
var o1 = {}; var o2 =new Object(); var o3 = new f1(); function f1(){}; var f2 = function(){}; var f3 = new Function('str','console.log(str)'); console.log(typeof Object); //function console.log(typeof Function); //function console.log(typeof f1); //function console.log(typeof f2); //function console.log(typeof f3); //function console.log(typeof o1); //object console.log(typeof o2); //object console.log(typeof o3); //object
在上面的範例中 o1 o2 o3 為普通對象,f1 f2 f3 為函數物件。怎麼區分,其實很簡單,凡是透過 new Function() 創建的對像都是函數對象,其他的都是普通對象。 f1,f2,歸根結底都是透過 new Function()的方式進行創建的。 Function Object 也都是透過 New Function()創建的。
一定要分清楚普通物件和函數對象,下面我們會常常用到它。
我們先複習一下建構子的知識:
function Person(name, age, job) { this.name = name; this.age = age; this.job = job; this.sayName = function() { alert(this.name) } } var person1 = new Person('Zaxlct', 28, 'Software Engineer'); var person2 = new Person('Mick', 23, 'Doctor');
上面的例子中person1 和person2 都是Person 的實例。這兩個實例都有一個 constructor
(建構子)屬性,該屬性(是一個指標)指向 Person。即:
console.log(person1.constructor == Person); //true console.log(person2.constructor == Person); //true
我們要記住兩個概念(建構函數,實例): person1 和person2 都是建構子Person 的實例 一個公式: 實例的建構子屬性(constructor)指向建構子。
#在JavaScript 中,每當定義物件(函數也是物件)時候,物件中都會包含一些預定義的屬性。其中每個函數物件都有一個prototype
屬性,這個屬性指向函數的原型物件。 (先用不管什麼是__proto__
第二節的課程會詳細的剖析)
function Person() {} Person.prototype.name = 'Zaxlct'; Person.prototype.age = 28; Person.prototype.job = 'Software Engineer'; Person.prototype.sayName = function() { alert(this.name); } var person1 = new Person(); person1.sayName(); // 'Zaxlct' var person2 = new Person(); person2.sayName(); // 'Zaxlct' console.log(person1.sayName == person2.sayName); //true
我們得到了本文第一個「定律」:
每个对象都有 __proto__ 属性,但只有函数对象才有 prototype 属性
那什麼是原型物件呢? 我們把上面的例子改一改你就會明白了:
Person.prototype = { name: 'Zaxlct', age: 28, job: 'Software Engineer', sayName: function() { alert(this.name); } }
原型對象,顧名思義,它就是一個普通對象(廢話 = =!)。從現在開始你要牢牢記住原型物件就是Person.prototype ,如果你還是害怕它,那就把它想想成一個字母A: var A = Person.prototype
在上面我們為A 增加了四個屬性:name、age、job、sayName。其實它還有一個預設的屬性:constructor
在預設情況下,所有的原型物件都會自動取得一個
constructor
(建構子)屬性,這個屬性(是一個指標)指向prototype
屬性所在的函數(Person)
#上面這句話有點拗口,我們「翻譯」一下:A 有一個預設的constructor
屬性,這個屬性是一個指針,指向Person。即: Person.prototype.constructor == Person
在上第二小節《建構子》裡,我們知道實例的構造函式屬性(constructor)指向建構函式 :person1.constructor == Person
這兩個「公式」好像有點連結:
person1.constructor == Person Person.prototype.constructor == Person
person1 為什麼有constructor 屬性?那是因為 person1 是 Person 的例子。 那 Person.prototype 為什麼有 constructor 屬性? ?同理, Person.prototype (你把它想像成 A) 也是Person 的實例。 也就是在 Person 創建的時候,創建了一個它的實例物件並賦值給它的 prototype,基本過程如下:##
var A = new Person(); Person.prototype = A; // 注:上面两行代码只是帮助理解,并不能正常运行
结论:原型对象(Person.prototype)是 构造函数(Person)的一个实例。
原型对象其实就是普通对象(但 Function.prototype 除外,它是函数对象,但它很特殊,他没有prototype属性(前面说道函数对象都有prototype属性))。看下面的例子:
function Person(){}; console.log(Person.prototype) //Person{} console.log(typeof Person.prototype) //Object console.log(typeof Function.prototype) // Function,这个特殊 console.log(typeof Object.prototype) // Object console.log(typeof Function.prototype.prototype) //undefined
Function.prototype
为什么是函数对象呢?
var A = new Function (); Function.prototype = A;
Function.prototype
是函数对象。那原型对象是用来做什么的呢?主要作用是用于继承。举个例子:
var Person = function(name){ this.name = name; // tip: 当函数执行时这个 this 指的是谁? }; Person.prototype.getName = function(){ return this.name; // tip: 当函数执行时这个 this 指的是谁? } var person1 = new person('Mick'); person1.getName(); //Mick
从这个例子可以看出,通过给 Person.prototype
设置了一个函数对象的属性,那有 Person 的实例(person1)出来的普通对象就继承了这个属性。具体是怎么实现的继承,就要讲到下面的原型链了。
小问题,上面两个 this 都指向谁?
var person1 = new person('Mick'); person1.name = 'Mick'; // 此时 person1 已经有 name 这个属性了 person1.getName(); //Mick
故两次 this 在函数执行时都指向 person1。
推荐教程:《JS教程》
以上是最詳盡的 JS 原型與原型鏈詳解的詳細內容。更多資訊請關注PHP中文網其他相關文章!