// React v16.2
// ReactBaseClasses.js
/**
* Base class helpers for the updating state of a component.
*/
function PureComponent(props, context, updater) {
// Duplicated from Component.
this.props = props;
this.context = context;
this.refs = emptyObject;
// We initialize the default updater but the real one gets injected by the
// renderer.
this.updater = updater || ReactNoopUpdateQueue;
}
function ComponentDummy() {}
ComponentDummy.prototype = Component.prototype;
var pureComponentPrototype = (PureComponent.prototype = new ComponentDummy());
pureComponentPrototype.constructor = PureComponent;
// Avoid an extra prototype jump for these methods.
Object.assign(pureComponentPrototype, Component.prototype);
pureComponentPrototype.isPureReactComponent = true;
问题在于为什么要造一个ComponentDummy
我的理解是如果为了继承prototype
的话下面没必要再用assign
再设置一遍方法,他既然用了继承了,这边注释说为了避免方法额外的原型查找才用的assign
,既然这样的话写成下面这样不就好了吗
var pureComponentPrototype = PureComponent.prototype;
Object.assign(pureComponentPrototype, Component.prototype);
pureComponentPrototype.isPureReactComponent = true;
本来要找两次现在把方法提了一级只找一次
