說說JavaScript的原型鏈

在JS中,原型鏈有時候讓人覺得很胡裏花哨,又是prototype__proto__又是各種指向什麼的,讓人覺得很頭疼。如果你也有這種感覺,或許這篇文章可以幫助到你

一、認識原型

1、先來一串代碼

var Person = function(msg){
    this.msg = msg;
}
var person1 = new Person("wanger")

person1.constructor===Person;    //true
Person === Person.prototype.constructor; //true
person1.__proto__ === Person.prototype; //true
person1.__proto__.constructor === person1.constructor //true

看暈了吧?是不是很胡裏花哨?不用擔心,其實一張圖就能了明白這其中的關係:

Alt textAlt text

  • 藍色的是構造函數
  • 綠色的是構造函數實例出來的對象
  • 橙色的是構造函數的prototype,也是構造函數實例出來的對象的原型(它其實也是一個對象)

2、這裏特別要注意的是prototype__proto__的區別,prototype是函數纔有的屬性,而__proto__是每個對象都有的屬性。(__proto__不是一個規範屬性,只是部分瀏覽器實現了此屬性,對應的標準屬性是[[Prototype]])。

二、認識原型鏈

1、我們剛剛瞭解了原型,那原型鏈在哪兒呢?不要着急,再上一張圖:

Alt textAlt text

通過這張圖我們可以瞭解到,person1的原型鏈是:

person1 ----> Person.prototype ----> Object.prototype ----> null

2、事實上,函數也是一個對象,所以,Person的原型鏈是:

Person ----> Function.prototype ----> Object.prototype ----> null

由於Function.prototype定義了apply()等方法,因此,Person就可以調用apply()方法。

3、如果把原型鏈的關係都顯示清楚,那會複雜一些,如下圖:

Alt textAlt text

這裏需要特別注意的是:所有函數的原型都是Function.prototype,包括Function構造函數和Object構造函數(如圖中的標紅部分)

三、原型鏈的繼承

1、假設我們要基於Person擴展出Student,Student的構造如下:

function Student(props) {
    // 調用Person構造函數,綁定this變量:
    Person.call(this, props);
    this.grade = props.grade || 1;
}

但是,調用了Person構造函數不等於繼承了PersonStudent創建的對象的原型是:

new Student() ----> Student.prototype ----> Object.prototype ----> null

示意圖如下所示:

Alt textAlt text

必須想辦法把原型鏈修改爲:

new Student() ----> Student.prototype ----> Person.prototype ----> Object.prototype ----> null

示意圖如下所示:

Alt textAlt text

那我們應該怎麼修改呢?仔細觀察兩張圖的差異,我們會發現,如果我們將Studentprototype改成person1對象不就大功告成了?於是有了下面的代碼:

Student.prototype = person1 ;

但是這時候有個問題:

Student.prototype.constructor === Student; //false

原來Student.prototype(即person1)的constructor指向的還是Person,這時候還需要我們再改一下代碼:

Student.prototype.constructor = Student;

這樣就能把Student的原型鏈順利的修改爲: new Student() ----> Student.prototype ----> Person.prototype ----> Object.prototype ----> null 了;

完整的代碼顯示如下:

var Person = function(msg){
    this.msg = msg;
}
var Student = function(props) {
    // 調用Person構造函數,綁定this變量:
    Person.call(this, props);
    this.grade = props.grade || 1;
}
var person1 = new Person("wanger")
Student.prototype = person1 ;
Student.prototype.constructor = Student;

三、用以上原型鏈繼承帶來的問題

1、如果在控制檯執行一遍上述的代碼,我們會發現一些問題,如圖所示:

Alt textAlt text

Student.prototype上含有之前person1帶有的屬性,那麼,這樣的繼承的方法就顯得不那麼完美了

2、這個時候,我們可以藉助一箇中間對象來實現正確的原型鏈,這個中間對象的原型要指向Person.prototype。爲了實現這一點,參考道爺(就是發明JSON的那個道格拉斯)的代碼,中間對象可以用一個空函數F來實現:

var Person = function(msg){
    this.msg = msg;
}
var Student = function(props) {
    // 調用Person構造函數,綁定this變量:
    Person.call(this, props);
    this.grade = props.grade || 1;
}

// 空函數F:
function F() {
}

// 把F的原型指向Person.prototype:
F.prototype = Person.prototype;

// 把Student的原型指向一個新的F對象,F對象的原型正好指向Person.prototype:
Student.prototype = new F();

// 把Student原型的構造函數修復爲Student:
Student.prototype.constructor = Student;

// 繼續在Student原型(就是new F()對象)上定義方法:
Student.prototype.getGrade = function () {
    return this.grade;
};

// 創建wanger:
var wanger = new Student({
    name: '王二',
    grade: 9
});
wanger.msg; // '王二'
wanger.grade; // 9

// 驗證原型:
wanger.__proto__ === Student.prototype; // true
wanger.__proto__.__proto__ === Person.prototype; // true

// 驗證繼承關係:
wanger instanceof Student; // true
wanger instanceof Person; // true

這其中主要用到了一個空函數F作爲過橋函數。爲什麼道爺會用過橋函數?用過橋函數F(){}主要是爲了清空構造的屬性。如果有些原Person的構造用不到,那麼過橋函數將是一個好的解決方案

這樣寫的話,Student.prototype上就沒有任何自帶的私有屬性,這是理想的繼承的方法

3、如果把繼承這個動作用一個inherits()函數封裝起來,還可以隱藏F的定義,並簡化代碼:

function inherits(Child, Parent) {
    var F = function () {};
    F.prototype = Parent.prototype;
    Child.prototype = new F();
    Child.prototype.constructor = Child;
}

封裝後,寫起來就像這樣:

var Person = function(msg){
    this.msg = msg;
}
var Student = function(props) {
    // 調用Person構造函數,綁定this變量:
    Person.call(this, props);
    this.grade = props.grade || 1;
}
inherits(Student,Person) ;

這樣再一封裝的話,代碼就很完美了。

事實上,我們也可以在inherits中使用Object.create()來進行操作,代碼如下:

function inherits(Child, Parent) {
    Child.prototype = Object.create(Parent.prototype);
    Child.prototype.constructor = Child;
}

如果有興趣瞭解Object.create()的其他用法,可以參考我的這篇博客JS中Object.create的使用方法;

四、ES6的新關鍵字class

在ES6中,新的關鍵字class,extends被正式被引入,它採用的類似java的繼承寫法,寫起來就像這樣:

class Student extends Person {
    constructor(name, grade) {
        super(msg); // 記得用super調用父類的構造方法!
        this.grade = grade || 1;
    }
    myGrade() {
        alert('I am at grade ' + this.grade);
    }
}

這樣寫的話會更通俗易懂,繼承也相當方便。讀者可以進入廖雪峯的官方網站詳細瞭解class的用法

參考文獻:廖雪峯的官方網站
原文地址:王玉略的個人網站

發表評論
所有評論
還沒有人評論,想成為第一個評論的人麼? 請在上方評論欄輸入並且點擊發布.
相關文章