其他分享
首页 > 其他分享> > 大规模数据量下 es6 extend 性能不好

大规模数据量下 es6 extend 性能不好

作者:互联网

 

1、继承的深度越深,性能越差,基本上是多一层慢一倍,继承链上所有类(除最顶端,比如:上面例子中的 A)性能都会受影响

2、ES6 Class + extends 的性能不好

3、inherits 方式表现稳定,受继承层次影响很小

 

const inherits = function(ctor, superCtor) {
  ctor.super_ = superCtor;
  ctor.prototype = Object.create(superCtor.prototype, {
    constructor: {
      value: ctor,
      enumerable: false,
      writable: true,
      configurable: true
    }
  });
};

 

标签:inherits,es6,extend,性能,数据量,superCtor,prototype,true,ctor
来源: https://blog.51cto.com/u_15166492/2713647