JavaScript繼承的多種方式和優缺點

weixin_33924312發表於2019-02-02

1.原型鏈繼承

function Parent () {
    this.name = '張三';
}

Parent.prototype.getName = function () {
    console.log(this.name);
}

function Child () {

}

Child.prototype = new Parent();

var child1 = new Child();

console.log(child1.getName()) // 張三
複製程式碼

問題:

1.引用型別的屬性被所有例項共享,舉個例子:

function Parent () {
    this.names = ['張三', '李四'];
}

function Child () {

}

Child.prototype = new Parent();

var child1 = new Child();

child1.names.push('王五');

console.log(child1.names); // ["張三", "李四", "王五"]

var child2 = new Child();

console.log(child2.names); // ["張三", "李四", "王五"]
複製程式碼

2.在建立 Child 的例項時,不能向Parent傳參

2.借用建構函式

function Parent () {
    this.names = ['張三', '李四'];
}

function Child () {
    Parent.call(this);
}

var child1 = new Child();

child1.names.push('王五');

console.log(child1.names); // ["張三", "李四", "王五"]

var child2 = new Child();

console.log(child2.names); // ["張三", "李四"]
複製程式碼

優點:

1.避免了引用型別的屬性被所有例項共享

2.可以在 Child 中向 Parent 傳參

舉個例子:

function Parent (name) {
    this.name = name;
}

function Child (name) {
    Parent.call(this, name);
}

var child1 = new Child('張三');

console.log(child1.name); // 張三

var child2 = new Child('李四');

console.log(child2.name); // 李四
複製程式碼

缺點:

方法都在建構函式中定義,每次建立例項都會建立一遍方法。

3.組合繼承

原型鏈和借用建構函式的技術組合到一塊 使用原型鏈實現對原型屬性和方法的繼承 通過借用建構函式來實現對例項屬性的繼承.

function Parent (name) {
    this.name = name;
    this.colors = ['red', 'blue', 'green'];
}

Parent.prototype.getName = function () {
    console.log(this.name)
}

function Child (name, age) {

    Parent.call(this, name);
    
    this.age = age;

}

Child.prototype = new Parent();

var child1 = new Child('張三', '18');

child1.colors.push('black');

console.log(child1.name); // 張三
console.log(child1.age); // 18
console.log(child1.colors); // ["red", "blue", "green", "black"]

var child2 = new Child('李四', '20');

console.log(child2.name); // 李四
console.log(child2.age); // 20
console.log(child2.colors); // ["red", "blue", "green"]
複製程式碼

優點:融合原型鏈繼承和建構函式的優點,是 JavaScript 中最常用的繼承模式。

4.原型式繼承

就是 ES5 Object.create 的模擬實現,將傳入的 物件作為建立的物件的原型。

function createObj(o) {
    function F(){}
    F.prototype = o;
    return new F();
}
複製程式碼

就是 ES5 Object.create 的模擬實現,將傳入的物件作為建立的物件的原型。

缺點:

包含引用型別的屬性值始終都會共享相應的值,這點跟原型鏈繼承一樣。

var person = {
    name: '張三',
    friends: ['李四', '王五']
}

var person1 = createObj(person);
var person2 = createObj(person);

person1.name = 'person1';
console.log(person2.name); // 張三

person1.firends.push('麻子');
console.log(person2.friends); // ["李四", "王五", "麻子"]
複製程式碼

注意:修改person1.name的值,person2.name的值並未發生改變,並不是因為person1person2有獨立的 name 值,而是因為person1.name = 'person1',給person1新增了 name 值,並非修改了原型上的 name 值。

5. 寄生式繼承

建立一個僅用於封裝繼承過程的函式,該函式在內部以某種形式來做增強物件,最後返回物件。

function createObj (o) {
    var clone = object.create(o);
    clone.sayName = function () {
        console.log('hello world');
    }
    return clone;
}
複製程式碼

缺點:跟借用建構函式模式一樣,每次建立物件都會建立一遍方法。

6. 寄生組合式繼承

為了方便大家閱讀,在這裡重複一下組合繼承的程式碼:

function Parent (name) {
    this.name = name;
    this.colors = ['red', 'blue', 'green'];
}

Parent.prototype.getName = function () {
    console.log(this.name)
}

function Child (name, age) {
    Parent.call(this, name);
    this.age = age;
}

Child.prototype = new Parent();

var child1 = new Child('張三', '18');

console.log(child1)
複製程式碼

組合繼承最大的缺點是會呼叫兩次父建構函式。

一次是設定子型別例項的原型的時候:

Child.prototype = new Parent();
複製程式碼

一次在建立子型別例項的時候:

var child1 = new Child('張三', '18');
複製程式碼

回想下 new 的模擬實現,其實在這句中,我們會執行:

Parent.call(this, name);
複製程式碼

在這裡,我們又會呼叫了一次 Parent 建構函式。

所以,在這個例子中,如果我們列印 child1 物件,我們會發現 Child.prototype 和 child1 都有一個屬性為colors,屬性值為['red', 'blue', 'green']

那麼我們該如何精益求精,避免這一次重複呼叫呢?

如果我們不使用 Child.prototype = new Parent() ,而是間接的讓 Child.prototype 訪問到 Parent.prototype 呢?

看看如何實現:

function Parent (name) {
    this.name = name;
    this.colors = ['red', 'blue', 'green'];
}

Parent.prototype.getName = function () {
    console.log(this.name)
}

function Child (name, age) {
    Parent.call(this, name);
    this.age = age;
}

// 關鍵的三步
var F = function () {};

F.prototype = Parent.prototype;

Child.prototype = new F();


var child1 = new Child('kevin', '18');

console.log(child1);
複製程式碼

最後我們封裝一下這個繼承方法:

function object(o) {
    function F() {}
    F.prototype = o;
    return new F();
}

function prototype(child, parent) {
    var prototype = object(parent.prototype);
    prototype.constructor = child;
    child.prototype = prototype;
}

// 當我們使用的時候:
prototype(Child, Parent);
複製程式碼

這種方式的高效率體現它只呼叫了一次 Parent 建構函式,並且因此避免了在 Parent.prototype 上面建立不必要的、多餘的屬性。與此同時,原型鏈還能保持不變;因此,還能夠正常使用 instanceof 和 isPrototypeOf。開發人員普遍認為寄生組合式繼承是引用型別最理想的繼承正規化。

jquery的原型鏈

jquery原型關係圖,黃色的為物件,藍色的為函式。

原始碼如下:

(function(window, undefined) {
    var
    // ...
    jQuery = function(selector, context) {
        // The jQuery object is actually just the init constructor 'enhanced'
        // 看這裡,例項化方法 jQuery() 實際上是呼叫了其擴充的原型方法 jQuery.fn.init
        return new jQuery.fn.init(selector, context, rootjQuery);
    },
 
    // jQuery.prototype 即是 jQuery 的原型,掛載在上面的方法,即可讓所有生成的 jQuery 物件使用
    jQuery.fn = jQuery.prototype = {
        // 例項化化方法,這個方法可以稱作 jQuery 物件構造器
        init: function(selector, context, rootjQuery) {
            // ...
        }
    }
    // 這一句很關鍵,也很繞
    // jQuery 沒有使用 new 運算子將 jQuery 例項化,而是直接呼叫其函式
    // 要實現這樣,那麼 jQuery 就要看成一個類,且返回一個正確的例項
    // 且例項還要能正確訪問 jQuery 類原型上的屬性與方法
    // jQuery 的方式是通過原型傳遞解決問題,把 jQuery 的原型傳遞給jQuery.prototype.init.prototype
    // 所以通過這個方法生成的例項 this 所指向的仍然是 jQuery.fn,所以能正確訪問 jQuery 類原型上的屬性與方法
    jQuery.fn.init.prototype = jQuery.fn;
 
})(window);
複製程式碼

如果有錯誤或者不嚴謹的地方,請務必給予指正,十分感謝。

相關文章