欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  IT编程

15分钟深入了解JS继承分类、原理与用法

程序员文章站 2023-11-11 17:54:46
本文全面讲述了js继承分类、原理与用法。分享给大家供大家参考,具体如下: 许多 oo 语言都支持两种继承方式:接口继承和实现继承。接口继承只继承方法签名,而实现继承则继承...

本文全面讲述了js继承分类、原理与用法。分享给大家供大家参考,具体如下:

许多 oo 语言都支持两种继承方式:接口继承和实现继承。接口继承只继承方法签名,而实现继承则继承实际的方法。由于 ecmascript 中的函数没有签名,所以在 js 中无法实现接口继承。ecmascript 只支持实现继承,而且其实现继承主要是依靠原型链来实现的。所以,下面所要说的原型链继承借用构造函数继承组合继承原型式继承寄生式继承寄生组合式继承都属于实现继承。

最后的最后,我会解释 es6 中的 extend 语法利用的是寄生组合式继承。

1. 原型链继承

ecmascript 中描述了原型链的概念,并将原型链作为实现继承的主要方法。其基本思想是利用原型让一个引用类型继承另一个引用类型的属性和方法。实现原型链继承有一种基本模式,其代码大致如下:

function supertype(){
  this.property = true;
}
supertype.prototype.getsupervalue = function(){
  return this.property;
};
function subtype(){
  this.subproperty = false;
}
subtype.prototype = new supertype();    // 敲黑板!这是重点:继承了 supertype
subtype.prototype.getsubvalue = function (){
  return this.subproperty;
};
var instance = new subtype();
alert(instance.getsupervalue());    // true

原型链继承的一个本质是重写原型对象,代之以一个新类型的实例;给原型添加方法的代码一定要放在替换原型的语句之后;在通过原型链实现继承时,不能使用对象字面量创建原型方法。

实例属性在实例化后,会挂载在实例对象下面,因此称之为实例属性。上面的代码中 subtype.prototype = new supertype(); ,执行完这条语句后,原 supertype 的实例属性 property 就挂载在了 subtype.prototype 对象下面。这其实是个隐患,具体原因后面会讲到。

每次去查找属性或方法的时候,在找不到属性或方法的情况下,搜索过程总是要一环一环的前行到原型链末端才会停下来。

所有引用类型默认都继承了 object,而这个继承也是通过原型链实现的。由此可知,所有函数的默认原型都是 object 的实例,因此函数的默认原型都会包含一个内部指针,指向 object.prototype 。

缺点:

  1. 最主要的问题来自包含引用类型值的原型。在通过原型来实现继承时,原型实际上会变成另一个类型的实例。于是,原先的实例属性也就顺理成章地变成了现在的原型属性了。
  2. 在创建子类型的实例时,不能向超类型的构造函数传递参数。

* 题外话:确定原型与实例的关系的两种方式

  1. 第一种方式是使用 instanceof 操作符,只要用这个操作符来测试实例的原型链中是否出现过某构造函数。如果有,则就会返回 true ;如果无,则就会返回 false 。以下为示例代码:
    alert(instance instanceof object);   //true
    alert(instance instanceof supertype);  //true
    alert(instance instanceof subtype);   //true
    
    
  1. 第二种方式是使用 isprototypeof() 方法。同样,只要是原型链中出现过的原型,都可以说是该原型链所派生出来的实例的原型。以下为示例代码:
alert(object.prototype.isprototypeof(instance));    //true
alert(supertype.prototype.isprototypeof(instance));   //true
alert(subtype.prototype.isprototypeof(instance));    //true

2. 借用构造函数继承

借用构造函数继承,也叫伪造对象或经典继承。其基本思想相当简单,即在子类型构造函数的内部调用超类型构造函数。其继承代码大致如下:

function supertype(){
  this.colors = [ "red", "blue", "green"];
}
function subtype(){
  supertype.call(this);    // 敲黑板!注意了这里继承了 supertype
}
var instance1 = new subtype();
instance1.colors.push("black");
alert(instance1.colors);    // "red,blue,green,black"
var instance2 = new subtype();
alert(instance2.colors);    // "red,blue,green"

通过使用 call() 方法(或 apply() 方法也可以),我们实际上是在(未来将要)新创建的子类的实例环境下调用父类构造函数。

为了确保超类构造函数不会重写子类型的属性,可以在调用超类型构造函数后,再添加应该在子类型中定义的属性。

优点:可以在子类型构造函数中向超类型构造函数传递参数。

缺点:

  1. 方法都在构造函数中定义,每次实例化,都是新创建一个方法对象,因此函数根本做不到复用;
  2. 使用这种模式定义自定义类型,超类型的原型中定义的方法,对子类型而言是不可见。

3. 组合继承

组合继承(combination inheritance),有时候也叫做伪经典继承,其背后的思路是使用原型链实现对原型属性和方法的继承,而通过借用构造函数来实现对实例属性的继承。其继承代码大致如下:

function supertype(name){
  this.name = name;
  this.colors = ["red", "blue", "green"];
}
supertype.prototype.sayname = function(){
  alert(this.name);
};
function subtype(name, age){
  supertype.call(this, name);   // 继承属性
  this.age = age;         // 先继承,后定义新的自定义属性
}
subtype.prototype = new supertype();    // 继承方法
object.defineproperty( subtype.prototype, "constructor", {   // 先继承,后定义新的自定义属性
  enumerable: false,   // 申明该数据属性——constructor不可枚举
  value: subtype
});
subtype.prototype.sayage = function(){   // 先继承,后定义新的自定义方法
  alert(this.age);
};
var instance1 = new subtype("nicholas", 29);
instance1.colors.push("black");
alert(instance1.colors);    // "red, blue, green, black"
instance1.sayname();      // "nicholas"
instance1.sayage();       // 29
var instance2 = new subtype("greg", 27);
alert(instance2.colors);    // "red, blue, green"
instance2.sayname();      // "greg";
instance2.sayage();       // 27

优点:

  1. 融合了原型链继承和借用构造函数继承的优点,避免了他们的缺陷;
  2. instanceof()isprototypeof() 也能够用于识别基于组合继承创建的对象。

缺点:

在实现继承的时候,无论什么情况下,都会调用两次超类型构造函数:一次是在创建子类型原型的时候,另一次是在子类型构造函数内部。子类型的原型最终会包含超类型对象的全部实例属性,但我们不得不在定义子类型构造函数时重写这些属性,因为子类型的原型中最好不要有引用类型值。但这在实际中,就造成了内存的浪费。

4. 原型式继承

原型式继承所秉承的思想是:在不必创建自定义类型的情况下,借助原型链,基于已有的对象创建新对象。这其中会用到 object.create() 方法,让我们先来看看该方法的原理代码吧:

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

从本质上讲,object() 对传入其中的对象执行了一次浅复制。

ecmascript 5 想通过 object.create() 方法规范化原型式继承。这个方法接受两个参数:一参是被用来作为新对象原型的一个对象;二参为可选,一个为新对象定义额外属性的对象,这个参数的格式与 object.defineproperties() 的二参格式相同。以下为原型式继承的示例代码:

var person = {
  name: "nicholas",
  friends: ["shelby", "court", "van"]
};
var anotherperson = object.create(person, {
  name: {
    value: "greg"
  }
});
anotherperson.friends.push("rob");
alert(anotherperson.name);   //"greg"
var yetanotherperson = object.create(person);
yetanotherperson.name = "linda";
yetanotherperson.friends.push("barbie");
alert(person.friends);   //"shelby,court,van,rob,barbie"

缺点:所有实例始终都会共享源对象中的引用类型属性值。

5. 寄生式继承

寄生式(parasitic)继承的思路与寄生构造函数和工厂模式类似,即创建一个仅用于封装继承过程的函数,该函数在内部以某种方式来增强对象,最后再像真的是它做了所有工作一样返回对象。下面来看看,寄生式继承的示例代码:

function object(o){
  function f(){}
  f.prototype = o;
  return new f();
}
function createanother(original){
  var clone = object(original);  // 通过调用函数创建一个新对象
  clone.sayhi = function(){    // 以某种方式来增强这个对象
    alert("hi");
  };
  return clone;          // 返回这个对象
}

该继承方式其实就是将原型式继承放入函数内,并在其内部增强对象,再返回而已。就相当于原型式继承寄生于函数中,故而得名寄生式继承。

前面示范继承模式时使用的 object() 函数不是必需的;任何能够返回新对象的函数都适用于此模式。

缺点:不能做到函数复用,效率低下。

6. 寄生组合式继承(推荐)

寄生组合式继承,即通过借用构造函数来继承属性,通过原型链的混成形式来继承方法。其背后的基本思路是:不必为了指定子类型的原型而调用超类型的构造函数,我们所需要的无非就是超类型原型的一个副本而已。本质上,就是使用寄生式继承来继承超类型的原型,然后再将结果指定给子类型的原型。以下为寄生组合式继承的实例代码:

function object(o){
  function f(){}
  f.prototype = o;
  return new f();
}
function inheritprototype(subtype, supertype){
  var prototype = object(supertype.prototype);    //创建对象
  prototype.constructor = subtype;          //增强对象
  subtype.prototype = prototype;           //指定对象
}
function supertype(name){
  this.name = name;
  this.colors = ["red", "blue", "green"];
}
supertype.prototype.sayname = function(){
  alert(this.name);
};
function subtype(name, age){
  supertype.call(this, name);     // 继承属性
  this.age = age;
}
inheritprototype(subtype, supertype);    // 继承原型方法
subtype.prototype.sayage = function(){
  alert(this.age);
};

优点:

  1. 只调用一次超类型构造函数;
  2. 避免了在子类原型上创建不必要的、多余的属性,节省内存空间;
  3. 原型链还能正常保持不变,也就意味着能正常使用 instanceof 和 isprototypeof() 进行对象识别。

寄生组合式继承是最理想的继承方式。

7. es6 中的 extend 继承

来看看 es6 中 extend 如何实现继承的示例代码:这一块的内容解释,我阅读的是这篇文章,欲知原文,请戳这里~

class child extends parent{
  name ='qinliang';
  sex = "male";
  static hobby = "pingpong";   //static variable
  constructor(location){
    super(location);
  }
  sayhello (name){
    super.sayhello(name);    //super调用父类方法
  }
}

我们再来看看 babel 编译过后的代码中的 _inherit() 方法:

function _inherits(subclass, superclass) {
  //superclass必须是一个函数,同时非null
  if (typeof superclass !== "function" && superclass !== null) {
    throw new typeerror("super expression must either be null or a function, not " + typeof superclass);
  }
  subclass.prototype = object.create(   // 寄生组合式继承
    superclass && superclass.prototype,   //原型上的方法、属性全部被继承过来了
    {
      constructor: {   // 并且定义了新属性,这里是重写了constructor属性
        value: subclass,
        enumerable: false,   // 并实现了该属性的不可枚举
        writable: true,
        configurable: true
      }
    }
  );
  if (superclass)   // 实现类中静态变量的继承
    object.setprototypeof ? object.setprototypeof(subclass, superclass) : subclass.__proto__ = superclass;
}

从这里我们就可以很明显的看出 es6 中的 extend 语法,在内部实现继承时,使用的是寄生组合式继承。

下面我们来看看编译过后,除了 _inherit() 方法外的其他编译结果代码:

"use strict";
var _createclass = function () {    // 利用原型模式创建自定义类型
  function defineproperties(target, props) {   // 对属性进行数据特性设置
    for (var i = 0; i < props.length; i++) {
      var descriptor = props[i];
      descriptor.enumerable = descriptor.enumerable || false;
      descriptor.configurable = true;
      if ("value" in descriptor)
        descriptor.writable = true;
      object.defineproperty(target, descriptor.key, descriptor);
    }
  }
  return function (constructor, protoprops, staticprops) {
    // 设置constructor的原型属性到prototype中
    if (protoprops) defineproperties(constructor.prototype, protoprops);
    // 设置constructor的static类型属性
    if (staticprops) defineproperties(constructor, staticprops);
    return constructor;
  };
}();
var _get = function get(object, property, receiver) {  // 调用子类的方法之前会先调用父类的方法
  // 默认从function.prototype中获取方法
  if (object === null) object = function.prototype;
  // 获取父类原型链中的指定方法
  var desc = object.getownpropertydescriptor(object, property);
  if (desc === undefined) {
    var parent = object.getprototypeof(object);   // 继续往上获取父类原型
    if (parent === null) {
      return undefined;
    } else {    // 继续获取父类原型中指定的方法
      return get(parent, property, receiver);
    }
  } else if ("value" in desc) {
    return desc.value;   // 返回获取到的值
  } else {
    var getter = desc.get;   // 获取原型的getter方法
    if (getter === undefined) {
      return undefined;
    }
    return getter.call(receiver);    // 接着调用getter方法,并传入this对象
  }
};
function _classcallcheck(instance, constructor) {    // 保证了我们的实例对象是特定的类型
  if (!(instance instanceof constructor)) {
    throw new typeerror("cannot call a class as a function");
  }
}
// 在子类的构造函数中调用父类的构造函数
function _possibleconstructorreturn(self, call) {    // 一参为子类的this,二参为父类的构造函数
  if (!self) {
    throw new referenceerror("this hasn't been initialised - super() hasn't been called");
  }
  return call && (typeof call === "object" || typeof call === "function") ? call : self;
}
var child = function (_parent) {
  _inherits(child, _parent);
  function child(location) {   // static variable
    _classcallcheck(this, child);    // 检测this指向问题
    // 调用父类的构造函数,并传入子类调用时候的参数,生成父类的this或者子类自己的this
    var _this = _possibleconstructorreturn(this, (child.__proto__ || object.getprototypeof(child)).call(this, location));
    _this.name = 'qinliang';
    _this.sex = "male";
    return _this;
  }
  _createclass(child, [{   //更新child类型的原型
    key: "sayhello",
    value: function sayhello(name) {
      // super调用父类方法,将调用子类的super.sayhello时候传入的参数传到父类中
      _get(child.prototype.__proto__ || object.getprototypeof(child.prototype), "sayhello", this).call(this, name);
    }
  }]);
  return child;
}(parent);
child.hobby = "pingpong";

从我的注释中就可以看出 _possibleconstructorreturn() 函数,其实就是寄生组合式继承中唯一一次调用超类型构造函数,从而对子类型构造函数进行实例化环境的初始化。从这点,我们可以更加确定的 es6 中的 extend 使用的是寄生组合式继承。

更多关于javascript相关内容还可查看本站专题:《javascript面向对象入门教程》、《javascript错误与调试技巧总结》、《javascript数据结构与算法技巧总结》、《javascript遍历算法与技巧总结》及《javascript数学运算用法总结

希望本文所述对大家javascript程序设计有所帮助。