91超碰碰碰碰久久久久久综合_超碰av人澡人澡人澡人澡人掠_国产黄大片在线观看画质优化_txt小说免费全本

溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

深入理解JavaScript繼承的多種方式和優缺點

發布時間:2020-10-13 03:00:14 來源:腳本之家 閱讀:352 作者:冴羽 欄目:web開發

寫在前面

本文講解JavaScript各種繼承方式和優缺點。

注意:

跟《JavaScript深入之創建對象》一樣,更像是筆記。

哎,再讓我感嘆一句:《JavaScript高級程序設計》寫得真是太好了!

1.原型鏈繼承

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.引用類型的屬性被所有實例共享,舉個例子:

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傳參

2.借用構造函數(經典繼承)

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.避免了引用類型的屬性被所有實例共享

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

缺點:

方法都在構造函數中定義,每次創建實例都會創建一遍方法。

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('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 中最常用的繼承模式。

4.原型式繼承

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的值并未發生改變,并不是因為person1person2有獨立的 name 值,而是因為person1.name = 'person1',給person1添加了 name 值,并非修改了原型上的 name 值。

5. 寄生式繼承

創建一個僅用于封裝繼承過程的函數,該函數在內部以某種形式來做增強對象,最后返回對象。

function createObj (o) {
  var clone = object.create(o);
  clone.sayName = function () {
    console.log('hi');
  }
  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('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。開發人員普遍認為寄生組合式繼承是引用類型最理想的繼承范式。

以上就是本文的全部內容,希望對大家的學習有所幫助,也希望大家多多支持億速云。

向AI問一下細節

免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。

AI

宁南县| 泌阳县| 北碚区| 冀州市| 大同市| 丹凤县| 合山市| 南丹县| 固镇县| 托里县| 栖霞市| 巴青县| 黄大仙区| 东兰县| 吉隆县| 扎兰屯市| 桐梓县| 会理县| 沙坪坝区| 什邡市| 蓬溪县| 高密市| 灵寿县| 岳池县| 南召县| 平阴县| 白山市| 浪卡子县| 咸宁市| 高安市| 河北区| 堆龙德庆县| 龙门县| 杭州市| 芦山县| 阿拉尔市| 那坡县| 和硕县| 诏安县| 三亚市| 灵石县|