JavaScript深刻系列第十五篇,講解JavaScript各類繼承方式和優缺點。git
本文講解JavaScript各類繼承方式和優缺點。github
可是注意:閉包
這篇文章更像是筆記,哎,再讓我感嘆一句:《JavaScript高級程序設計》寫得真是太好了!app
function Parent () { this.name = 'kevin'; } Parent.prototype.getName = function () { console.log(this.name); } function Child () { } Child.prototype = new Parent(); var child1 = new Child(); console.log(child1.getName()) // kevin
問題:函數
1.引用類型的屬性被全部實例共享,舉個例子:this
function Parent () { this.names = ['kevin', 'daisy']; } function Child () { } Child.prototype = new Parent(); var child1 = new Child(); child1.names.push('yayu'); console.log(child1.names); // ["kevin", "daisy", "yayu"] var child2 = new Child(); console.log(child2.names); // ["kevin", "daisy", "yayu"]
2.在建立 Child 的實例時,不能向Parent傳參prototype
function Parent () { this.names = ['kevin', 'daisy']; } function Child () { Parent.call(this); } var child1 = new Child(); child1.names.push('yayu'); console.log(child1.names); // ["kevin", "daisy", "yayu"] var child2 = new Child(); console.log(child2.names); // ["kevin", "daisy"]
優勢:設計
1.避免了引用類型的屬性被全部實例共享code
2.能夠在 Child 中向 Parent 傳參對象
舉個例子:
function Parent (name) { this.name = name; } function Child (name) { Parent.call(this, name); } var child1 = new Child('kevin'); console.log(child1.name); // kevin var child2 = new Child('daisy'); console.log(child2.name); // daisy
缺點:
方法都在構造函數中定義,每次建立實例都會建立一遍方法。
原型鏈繼承和經典繼承雙劍合璧。
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('kevin', '18'); child1.colors.push('black'); console.log(child1.name); // kevin console.log(child1.age); // 18 console.log(child1.colors); // ["red", "blue", "green", "black"] var child2 = new Child('daisy', '20'); console.log(child2.name); // daisy console.log(child2.age); // 20 console.log(child2.colors); // ["red", "blue", "green"]
優勢:融合原型鏈繼承和構造函數的優勢,是 JavaScript 中最經常使用的繼承模式。
function createObj(o) { function F(){} F.prototype = o; return new F(); }
就是 ES5 Object.create 的模擬實現,將傳入的對象做爲建立的對象的原型。
缺點:
包含引用類型的屬性值始終都會共享相應的值,這點跟原型鏈繼承同樣。
var person = { name: 'kevin', friends: ['daisy', 'kelly'] } var person1 = createObj(person); var person2 = createObj(person); person1.name = 'person1'; console.log(person2.name); // kevin person1.firends.push('taylor'); console.log(person2.friends); // ["daisy", "kelly", "taylor"]
注意:修改person1.name
的值,person2.name
的值並未發生改變,並非由於person1
和person2
有獨立的 name 值,而是由於person1.name = 'person1'
,給person1
添加了 name 值,並不是修改了原型上的 name 值。
建立一個僅用於封裝繼承過程的函數,該函數在內部以某種形式來作加強對象,最後返回對象。
function createObj (o) { var clone = object.create(o); clone.sayName = function () { console.log('hi'); } return clone; }
缺點:跟借用構造函數模式同樣,每次建立對象都會建立一遍方法。
爲了方便你們閱讀,在這裏重複一下組合繼承的代碼:
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('kevin', '18'); console.log(child1)
組合繼承最大的缺點是會調用兩次父構造函數。
一次是設置子類型實例的原型的時候:
Child.prototype = new Parent();
一次在建立子類型實例的時候:
var child1 = new Child('kevin', '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);
引用《JavaScript高級程序設計》中對寄生組合式繼承的誇讚就是:
這種方式的高效率體現它只調用了一次 Parent 構造函數,而且所以避免了在 Parent.prototype 上面建立沒必要要的、多餘的屬性。與此同時,原型鏈還能保持不變;所以,還可以正常使用 instanceof 和 isPrototypeOf。開發人員廣泛認爲寄生組合式繼承是引用類型最理想的繼承範式。
《JavaScript深刻之call和apply的模擬實現》
JavaScript深刻系列目錄地址:https://github.com/mqyqingfeng/Blog。
JavaScript深刻系列預計寫十五篇左右,旨在幫你們捋順JavaScript底層知識,重點講解如原型、做用域、執行上下文、變量對象、this、閉包、按值傳遞、call、apply、bind、new、繼承等難點概念。
若是有錯誤或者不嚴謹的地方,請務必給予指正,十分感謝。若是喜歡或者有所啓發,歡迎star,對做者也是一種鼓勵。