JS 继承

原文链接:zhuanlan.zhihu.com

(一) 原型链继承:

function Parent(name) {

    this.name = name;

}

Parent.prototype.sayName = function() {

    console.log('parent name:', this.name);

}

function Child(name) {

    this.name = name;

}

Child.prototype = new Parent('father');

Child.prototype.constructor = Child;

Child.prototype.sayName = function() {

    console.log('child name:', this.name);

}

var child = new Child('son');

child.sayName();    // child name: son

只要是原型链中出现过的原型,都可以说是该原型链派生的实例的原型。

这种方法存在两个缺点:

子类型无法给超类型传递参数,在面向对象的继承中,我们总希望通过 var child = new Child('son', 'father'); 让子类去调用父类的构造器来完成继承。而不是通过像这样 new Parent('father') 去调用父类。

Child.prototype.sayName 必须写在 Child.prototype = new Parent('father'); 之后,不然就会被覆盖掉。

(二) 类式继承:

function Parent(name) {

    this.name = name;

}

Parent.prototype.sayName = function() {

    console.log('parent name:', this.name);

}

Parent.prototype.doSomthing = function() {

    console.log('parent do something!');

}

function Child(name, parentName) {

    Parent.call(this, parentName);

    this.name = name;

}

Child.prototype.sayName = function() {

    console.log('child name:', this.name);

}

var child = new Child('son');

child.sayName();      // child name: son

child.doSomthing();  // TypeError: child.doSomthing is not a function

相当于 Parent 这个函数在 Child 函数中执行了一遍,并且将所有与 this 绑定的变量都切换到了 Child 上,这样就克服了第一种方式带来的问题。

缺点:

没有原型,每次创建一个 Child 实例对象时候都需要执行一遍 Parent 函数,无法复用一些公用函数。

(三) 组合式继承:前两种方式的结合

function Parent(name) {

    this.name = name;

}

Parent.prototype.sayName = function() {

    console.log('parent name:', this.name);

}

Parent.prototype.doSomething = function() {

    console.log('parent do something!');

}

function Child(name, parentName) {

    Parent.call(this, parentName);

    this.name = name;

}

Child.prototype.sayName = function() {

    console.log('child name:', this.name);

}

Child.prototype = new Parent();     

Child.prototype.construtor = Child;

var child = new Child('son');

child.sayName();      // child name: son

child.doSomething();  // parent do something!

组合式继承是比较常用的一种继承方法,其背后的思路是使用原型链实现对原型属性和方法的继承,而通过借用构造函数来实现对实例属性的继承。

这样,既通过在原型上定义方法实现了函数复用,又保证每个实例都有它自己的属性。

组合式继承是 JS 最常用的继承模式,但组合继承使用过程中会被调用两次:一次是创建子类型的时候,另一次是在子类型构造函数的内部。

function Parent(name) {

    this.name = name;

}

Parent.prototype.sayName = function() {

    console.log('parent name:', this.name);

}

Parent.prototype.doSomething = function() {

    console.log('parent do something!');

}

function Child(name, parentName) {

    Parent.call(this, parentName);      // 第二次调用

    this.name = name;

}

Child.prototype.sayName = function() {

    console.log('child name:', this.name);

}

Child.prototype = new Parent();        // 第一次调用

Child.prototype.construtor = Child;

var child = new Child('son');

child.sayName();     

child.doSomething(); 

显然从上述的代码中可以看出,第一次调用构造函数显然是没有必要的,因为第一次调用构造函数时候不需要函数内部的那些实例属性,这么写只是想获得其原型上的方法罢了,所以这时候你可能会这样写:

Child.prototype = Parent.prototype;

这样写显然是不对的:

首先,你这样写的话相当于是子类和父类都指向同一个对象,这时候如果你添加了新的方法给 Child 但实际上 Parent 并不需要,相当于强行给 Parent 添加了一个未知的方法。

其次,仔细想想,这样体现不出继承的多态性,比如此时子类想要重写父类的 getName 的方法,那么父类的方法也就会随之修改,这显然违背了多态性。

也就是说我们第一次调用构造函数的时候,其实是不管构造函数里面的内容,所以我们何不 new 一个空函数,将其 prototype 指向 Parent.prototype,代码如下:

(四) 寄生组合式继承:

function Parent(name) {

    this.name = name;

}

Parent.prototype.sayName = function() {

    console.log('parent name:', this.name);

}

function Child(name, parentName) {

    Parent.call(this, parentName); 

    this.name = name;   

}

function create(proto) {

    function F(){}

    F.prototype = proto;

    F.prototype.construtor = F;

    return new F();

}

Child.prototype = create(Parent.prototype);

Child.prototype.sayName = function() {

    console.log('child name:', this.name);

}

Child.prototype.construtor = Child;

var parent = new Parent('father');

parent.sayName();    // parent name: father

var child = new Child('son', 'father');

child.sayName();    // child name: son

这就是所谓的寄生组合式继承方式,跟组合式继承的区别在于,他不需要在一次实例中调用两次父类的构造函数,假如说父类的构造器代码很多,还需要调用两次的话对系统肯定会有影响,寄生组合式继承的思想在于:用一个 F 空的构造函数去取代执行了 Parent 这个构造函数。

在上面的代码中,我们手动创建了一个 create 函数,但是其实是存在于 Object 对象中,不需要我们手动去创建,所以上面的代码可以改为:

function Parent(name) {

    this.name = name;

}

Parent.prototype.sayName = function() {

    console.log('parent name:', this.name);

}

function Child(name, parentName) {

    Parent.call(this, parentName); 

    this.name = name;   

}

function inheritPrototype(Parent, Child) {

    Child.prototype = Object.create(Parent.prototype);  //修改

    Child.prototype.construtor = Child;

}

inheritPrototype(Parent, Child);

Child.prototype.sayName = function() {

    console.log('child name:', this.name);

}

var parent = new Parent('father');

parent.sayName();      // parent name: father

var child = new Child('son', 'father');

child.sayName();      // child name: son

(五) ES 6 继承:

当然,如果你学习过 ES 6,那么写继承关系就会特别简单,如果你学过 Java 就会发现,ES 6 中的继承跟 Java 太像了,上述的代码可改为:

class Parent {

    constructor(name) {

this.name = name;

    }

    doSomething() {

console.log('parent do something!');

    }

    sayName() {

console.log('parent name:', this.name);

    }

}

class Child extends Parent {

    constructor(name, parentName) {

super(parentName);

this.name = name;

    }

    sayName() {

console.log('child name:', this.name);

    }

}

const child = new Child('son', 'father');

child.sayName();            // child name: son

child.doSomething();        // parent do something!

const parent = new Parent('father');

parent.sayName();          // parent name: father

本文转自:https://juejin.im/entry/58be60de570c350059b65399

©著作权归作者所有,转载或内容合作请联系作者
  • 序言:七十年代末,一起剥皮案震惊了整个滨河市,随后出现的几起案子,更是在滨河造成了极大的恐慌,老刑警刘岩,带你破解...
    沈念sama阅读 204,053评论 6 478
  • 序言:滨河连续发生了三起死亡事件,死亡现场离奇诡异,居然都是意外死亡,警方通过查阅死者的电脑和手机,发现死者居然都...
    沈念sama阅读 85,527评论 2 381
  • 文/潘晓璐 我一进店门,熙熙楼的掌柜王于贵愁眉苦脸地迎上来,“玉大人,你说我怎么就摊上这事。” “怎么了?”我有些...
    开封第一讲书人阅读 150,779评论 0 337
  • 文/不坏的土叔 我叫张陵,是天一观的道长。 经常有香客问我,道长,这世上最难降的妖魔是什么? 我笑而不...
    开封第一讲书人阅读 54,685评论 1 276
  • 正文 为了忘掉前任,我火速办了婚礼,结果婚礼上,老公的妹妹穿的比我还像新娘。我一直安慰自己,他们只是感情好,可当我...
    茶点故事阅读 63,699评论 5 366
  • 文/花漫 我一把揭开白布。 她就那样静静地躺着,像睡着了一般。 火红的嫁衣衬着肌肤如雪。 梳的纹丝不乱的头发上,一...
    开封第一讲书人阅读 48,609评论 1 281
  • 那天,我揣着相机与录音,去河边找鬼。 笑死,一个胖子当着我的面吹牛,可吹牛的内容都是我干的。 我是一名探鬼主播,决...
    沈念sama阅读 37,989评论 3 396
  • 文/苍兰香墨 我猛地睁开眼,长吁一口气:“原来是场噩梦啊……” “哼!你这毒妇竟也来了?” 一声冷哼从身侧响起,我...
    开封第一讲书人阅读 36,654评论 0 258
  • 序言:老挝万荣一对情侣失踪,失踪者是张志新(化名)和其女友刘颖,没想到半个月后,有当地人在树林里发现了一具尸体,经...
    沈念sama阅读 40,890评论 1 298
  • 正文 独居荒郊野岭守林人离奇死亡,尸身上长有42处带血的脓包…… 初始之章·张勋 以下内容为张勋视角 年9月15日...
    茶点故事阅读 35,634评论 2 321
  • 正文 我和宋清朗相恋三年,在试婚纱的时候发现自己被绿了。 大学时的朋友给我发了我未婚夫和他白月光在一起吃饭的照片。...
    茶点故事阅读 37,716评论 1 330
  • 序言:一个原本活蹦乱跳的男人离奇死亡,死状恐怖,灵堂内的尸体忽然破棺而出,到底是诈尸还是另有隐情,我是刑警宁泽,带...
    沈念sama阅读 33,394评论 4 319
  • 正文 年R本政府宣布,位于F岛的核电站,受9级特大地震影响,放射性物质发生泄漏。R本人自食恶果不足惜,却给世界环境...
    茶点故事阅读 38,976评论 3 307
  • 文/蒙蒙 一、第九天 我趴在偏房一处隐蔽的房顶上张望。 院中可真热闹,春花似锦、人声如沸。这庄子的主人今日做“春日...
    开封第一讲书人阅读 29,950评论 0 19
  • 文/苍兰香墨 我抬头看了看天上的太阳。三九已至,却和暖如春,着一层夹袄步出监牢的瞬间,已是汗流浃背。 一阵脚步声响...
    开封第一讲书人阅读 31,191评论 1 260
  • 我被黑心中介骗来泰国打工, 没想到刚下飞机就差点儿被人妖公主榨干…… 1. 我叫王不留,地道东北人。 一个月前我还...
    沈念sama阅读 44,849评论 2 349
  • 正文 我出身青楼,却偏偏与公主长得像,于是被迫代替她去往敌国和亲。 传闻我的和亲对象是个残疾皇子,可洞房花烛夜当晚...
    茶点故事阅读 42,458评论 2 342

推荐阅读更多精彩内容

  • 继承6种套餐 参照红皮书,JS继承一共6种 1.原型链继承 核心思想:子类的原型指向父类的一个实例 Son.pro...
    灯不梨喵阅读 3,107评论 1 2
  • 1:原型继承 为了让子类继承父类的属性(也包括方法),首先需要定义一个构造函数。然后,将父类的新实例赋值给构造函数...
    codeSirCao阅读 240评论 0 0
  • Q&A: 1. 继承有什么作用? 概念:继承是指一个对象直接使用另一个对象的属性和方法。 作用:继承划分了类的层次...
    进击的阿群阅读 576评论 0 1
  • 借用构造函数继承 原型链式继承(借用原型链实现继承) 组合式继承 组合式继承优化1 组合式继承优化2 ES6中继承...
    lxt410725阅读 295评论 0 1
  • 《情绪》 人都是受情绪控制的,让你哭,让你笑,让你开心,让你烦恼。这几天我一直处在情绪中,没...
    追逐梦的自由阅读 157评论 0 0