ES5 与 ES6继承

2018-06-02  本文已影响0人  一慢呀
写在前面

之所以想写这个,是想为以后学习 react 做个铺垫,每一个看似理所当然的结果,实际上推敲过程很耐人寻味,就从 ES6 类的实例化和继承开始,但是 ES6 的实现是在 ES5 的基础上,所以需要对 ES5 中关于 构造函数继承这些梳理清晰。

关于 new 关键字
// ES5 中构造函数创建实例过程
function Person (name, age) {
    this.name = name
    this.age = age
}
// 返回一个具有 name = ww, age = 18 的 person 对象
var person = new Person('ww', 19)

// 那么 new 关键字做了哪些工作
// 下面是对使用 new 关键字配合构造函数创建对象的过程模拟
var person = (function() {
    function Person (name, age) {
        this.name = name
        this.age = age
    }
    // 创建一个隐式空对象
    var object = {}
    // 修正隐式对象的原型
    setPrototypeOf(object, Person.prototype)
    // 执行构造函数,为空对象赋值
    Person.apply(object, arguments)
    // 返回隐式对象
    return object
})('www', 90)
function setPrototypeOf(object, proto) {
    Object.setPrototypeOf ? 
    Object.setPrototypeOf(object, proto) 
    : 
    object.__proto__ = proto
}
// 返回的 person 我们通常会称之为 Person 的一个实例。
ES5中继承的实现
  1. 第一种是通过传统的原型链继承方式,比较好理解:自身若有被读取的属性或者方法的时候,自取所需,如果没有,就沿着原型链一层一层往上找,直到找到或者找不到返回 undefined 或者报错
// 01-定义父类
function Human(home) {
    this.home = home
}
// 02-为父类实例添加方法
Human.prototype.say = function () {
    return `I'm a ${this.sex}, I come from ${this.home}`
}
// 03-定义一个子类
function Person(sex) {
    this.sex = sex
}
// 04-子类的原型对象指向父类实例,实现继承
Person.prototype = new Human('Earth')
var man = new Person('man')
// 调用实例身上的方法,由于没有,沿着原型链往上找,
// 找到的是父类原型对象上面的 say() 方法
man.say()   // 返回的是 I'm a man, I come from Earth

// 05-子类再实例化一个对象
var female = new Person('female')

// 06-修改原型链上的 home 属性
Object.getPrototypeOf(female).home = 'Mars'

// 07-调用子类两个实例的 say() 方法
man.say()        // 返回结果:I'm a man, I come from Mars
female.say()     // 返回结果:I'm a female, I come from Mars

// 别人本来是来自地球,你随便动动手指,让人家诞生在火星了,多少有点说不过去
// 基于这样的特点,只要有任何一个子类实例修改了原型对象上的属性或者父类实例自身修改了属性
// 将会影响所有继承它的子类,这个不是我们愿意看到的
// 所以就有了第二种方式:call 或者 apply 实现继承
  1. 通过 call 或者 apply 实现继承和 对象冒充 继承很相似,但是有所不同,根本原因是 this 总是指向函数运行时所在的那个对象,下面是 call 方法实现继承过程
// 01-定义父类
function Human(home) {
    this.home = home
}
// 02-为父类实例添加方法
Human.prototype.say = function () {
    return `I'm a ${this.sex}, I come from ${this.home}`
}
// 03-定义一个子类
function Person(sex, home) {
    // 04-实现借用父类创建子类自身的属性,这是最重要的一点
    // 如果你理解了 new 的作用,就知道此刻 this 指向是谁了
    Human.call(this, home)
    this.sex = sex
}
// 05-实例化一个具有 sex=man 和 home=earth 特征的 子类实例
var man = new Person('man', 'Earth')

// 06-再实例化一个具有 sex=female 和 home=Mars 特征的 子类实例
var female = new Person('female', 'Mars')

// 07-无论任意子类实例修改 sex 和 home 属性,或者 父类实例修改 home 属性
// 都不会影响到其他的子类实例,因为属性此刻私有化了

// 08-但是会发现调用子类两个实例的 say() 方法,会报错,因为原型链上没有这个方法
// 扔出错误:man.say is not a function
man.say() 
female.say() 

// call 或者 apply 方法实现继承的最大优势就是能够实现属性私有化,但是劣势就是没有办法继承
// 父类原型对象上面的方法,所以为了解决原型链继承和call方法继承的缺点,将两者的优点糅合在一起
// 即混合继承,能够实现完美的继承
  1. 混合继承,即通过 call 或者 apply 实现属性继承,原型链实现方法继承
// 01-定义父类
function Human(home) {
    this.home = home
}
// 02-为父类实例添加方法
Human.prototype.say = function () {
    return `I'm a ${this.sex}, I come from ${this.home}`
}
// 03-定义一个子类
function Person(sex, home) {
// 04-使用 call 继承父类的属性
    Human.call(this, home)
    this.sex = sex
}
// 05-使用原型链,继承父类的方法
Person.prototype = new Human('sun')

// 06-子类实例化一个对象
var man = new Person('man', 'Earth')

// 07-子类再实例化一个对象
var female = new Person('female', 'Mars')

// 08-修改原型链上的 home 属性
Object.getPrototypeOf(female).home = 'Heaven'

// 09-调用子类两个实例的 say() 方法,返回的 home 都是当前实例自身的 home 属性
// 而不是原型链上的 home ,因为当前实例自身有该属性,就不再往原型链上找了
// 所以通过 call 和 原型链能够实现完美继承
man.say()     // 返回结果:I'm a man, I come from Earth
female.say()  // 返回结果:I'm a female, I come from Mars
ES6类实例化中的new
// 01-声明一个类
class Human {
    constructor(home) {
        this.home = home
    }
}
// 02-虽然 Human 的本质是一个 function,但是在没有 new 的情况下调用类 js 引擎会抛出错误
// Class constructor Human cannot be invoked without 'new',这点跟 ES5 是不同的
const man = Human('Earth')
// 原因很简单,在 class 声明的变量内部,默认开启的是 严格模式,所以如果没有使用 new 
// this 的指向是 undefined,对 undefined 任何属性或者方法的读写都是没有意义的,所以直接丢出错误

// 03-对 类 进行实例化是否使用 new 的判断以及实例化过程模拟

// 开启严格模式
'use strict'
function setPrototypeOf(object, proto) {
    Object.setPrototypeOf ? 
    Object.setPrototypeOf(object, proto) 
    : 
    object.__proto__ = proto
}
var person = (function () {
    function _classCallCheck(instance, constructor) {
        if (!(instance instanceof constructor)) {
            throw new TypeError(`Class constructor ${constructor.name} cannot be invoked without 'new'`)
        }
    }
    function Human(home) {
        // 在这一步来判断当前 this 的指向,如果你理解了 new 的作用,
       // 你就会清楚,当前 this 的指向
        _classCallCheck(this, Human)
        this.home = home
    }
    var object = {}
    setPrototypeOf(object, Human.prototype)
    Human.apply(object, arguments)
    return object
})('Earth')
// 以上就解释了为什么 ES6 必须使用 new,以及如果做判断的过程
ES6类实例化过程中如何添加静态方法和原型方法
class Human {
    // constructor 和 say 方法添加到原型上
    constructor(home) {
        this.home = home
    }
    say() {
        return `I come from ${this.home}`
    }
    // 静态方法添加到当前类本身上
    static drink() {
        return `human had better drink everyday`
    }
}
const person = new Human('Mars')


// 上述的实现过程可以通过下面代码模拟

// 开启严格模式
'use strict'
function setPrototypeOf(object, proto) {
    Object.setPrototypeOf ? 
    Object.setPrototypeOf(object, proto) 
    : 
    object.__proto__ = proto
}
function _classCallCheck(instance, constructor) {
    if (!(instance instanceof constructor)) {
        throw new TypeError(`Class constructor ${constructor.name} cannot be invoked without 'new'`)
    }
}
// 01-拓展构造函数的方法
var _createClass = (function () {
    // 02-定义一个将方法添加原型或者构造函数本身的方法;
    function defineProperties(target, props) {
        for (var i = 0, length = props.length; i < length; i++) {
            // 获取属性描述符,即 Object.defineProperty(object, key, descriptor) 的第三个参数
            var descriptor = props[i]
            // 指定当前方法默认不可枚举,是为了避免 for...in 循环拿到原型身上属性
            descriptor.enumerable = descriptor.enumerable || false
            // 指定当前方法默认是可配置的,因为添加到原型上的方法均是可以修改和删除的
            descriptor.configurable = true
            // 指定当前方法默认是可重写,因为自定义的方法可以修改
            if (descriptor.hasOwnProperty('value')) descriptor.writable = true
            // 添加方法到原型或者构造函数本身
            Object.defineProperty(target, descriptor.key, descriptor)
        }
    }
    return function (constructor, protoProps, staticProps) {
        // 原型上添加方法
        if (protoProps) defineProperties(constructor.prototype, protoProps)
        // 构造函数自身添加静态方法
        if (staticProps) defineProperties(constructor, staticProps)
        return constructor
    }
})()

// 03-对类往原型以及本身上面添加方法和实例化过程的模拟
var person = (function () {
    // 04-构造函数
    function Human(home) {
        _classCallCheck(this, Human)
        this.home = home
    }
    // 执行添加方法的函数;并且第二个参数默认会有一个 key = constructor 的配置对象;
    _createClass(
        Human,
        // 原型方法
        [{
            key: 'constructor',
            value: Human
        }, {
            key: 'say',
            value: function say() {
                return 'I come from ' + this.home
            }
        }],
        // 静态方法
        [{
            key: 'play',
            value: function drink() {
                return `human had better drink everyday`
            }
        }]
    )
    var object = {}
    setPrototypeOf(object, Human.prototype)
    Human.apply(object, arguments)
    return object
})('Mars')
ES6的继承实现
  1. 当子类作为对象的时候,子类原型是父类: subClass.__proto__ = superClass
  2. 当子类作为构造函数的时候,子类的原型是父类原型的实例:subClass.prototype.__proto__ = superClass.prototype
  3. 这点很重要,因为在 ES6 继承中有个 extends 关键字,就是用来确定子类的两条原型链,这个过程也可以来模拟;
// ES6 的继承
class Human {
    constructor(home) {
        this.home = home
    }
    say() {
        return `I come from ${this.home}`
    }
}
class Person extends Human {}

// 下面是模拟继承过程
'use strict'
// 是否使用 new 操作符
function _classCallCheck(instance, constructor) {
    if (!(instance instanceof constructor)) {
        throw new TypeError(`Class constructor ${constructor.name} cannot be invoked without 'new'`)
    }
}
// 类型检测
function _typeCheck(placeholder, dataType) {
    var _toString = Object.prototype.toString
    if (placeholder) {
        if (_toString.call(dataType) !== '[object Function]' && _toString.call(dataType) !== '[object Null]')
            throw new TypeError(`Class extends value ${dataType} is not a constructor or null`)
    } else {
        if (_toString.call(dataType) === '[object Function]' || _toString.call(dataType) === '[object Object]')
            return true
    }
}
// 拓展构造函数
var __createClass = (function () {
    function defineProperties(target, props) {
        for (var i = 0, length = props.length; i < props; i++) {
            var descriptor = props[i]
            descriptor.enumerable = descriptor.enumerable || false
            descriptor.configurable = true
            if (descriptor.hasOwnProperty('value')) descriptor.writable = true
            Object.defineProperty(target, descriptor.key, descriptor)
        }
    }
    return function (constructor, protoProps, staticProps) {
        if (protoProps) defineProperties(constructor.prototype, protoProps)
        if (staticProps) defineProperties(constructor, staticProps)
        return constructor
    }
})()

// 子类继承父类方法
function _inheriteMethods(subClass, superClass) {
    // 检测父类类型
    _typeCheck(subClass, superClass)
    // 排除父类为 null,并修正 constructor 指向,继承原型方法
    subClass.prototype = Object.create(superClass && superClass.prototype, {
        constructor: {
            value: subClass,
            enumerable: false,
            configurable: true,
            writable: true
        }
    })
    // 排除父类为 null, 继承父类静态方法
    if (superClass) {
        Object.setPrototypeOf ? 
        Object.setPrototypeOf(subClass, superClass)
        : 
        (subClass.__proto__ = superClass)
    }
}

// 继承父类属性
function _inheriteProps(instance, constructorToInstance) {
    // 确保父类创建出 this 之后,子类才能使用 this
    if (!instance) {
        throw new ReferenceError(`this hasn't been initialised - super() hasn't been called`)
    }
    // 在确定父类不是 null 的时候返回继承父类属性的子类实例,否则返回一个由子类创建的一个空实例
    return constructorToInstance && _typeCheck(null, constructorToInstance) ?
           constructorToInstance 
           :
           instance
}

// 创建父类
var Human = (function () {
    function Human(home) {
        _classCallCheck(this, Human)
        this.home = home
    }
    __createClass(Human, [{
        key: 'say',
        value: function say() {
            return "I come from" + this.home
        }
    }])
    return Human
})()

// 创建子类
var Person = (function () {
    // 原型链继承
    _inheriteMethods.call(null, Person, arguments[0])
    // 构造函数
    function Person() {
        _classCallCheck(this, Person)
        // 这步是对通过父类还是子类创建实例的判断,取决于 Person 的父类是否为 null,
        // 如果不为 null,Person.__proto__ = Human
        // 如果为 null,Person.__proto__ = Function.prototype,
        // 调用 apply 返回值的 undefined,最终返回由子类创建的空对象
        return _inheriteProps(this, (Person.__proto__ || Object.getPrototypeOf(Person)).apply(this,
            arguments))
    }
    return Person
})(Human)

// 以上就是对子类如何继承父类属性和方法的完整实现过程
写在最后
上一篇下一篇

猜你喜欢

热点阅读