ES5 之继承

基于构造函数的继承

  1. function Parent1() {
  2. this.parent1 = 'parent1'
  3. this.arr = [1, 2, 3]
  4. }
  5. Parent1.prototype.walk = 'I can walk'
  6. function Child1() {
  7. Parent1.call(this)
  8. this.child1 = 'child1'
  9. }
  10. const child11 = new Child1()
  11. const child12 = new Child1()
  12. // 测试
  13. child11.parent1 // parent1
  14. child11.walk // undefined
  15. child11.arr.push(4)
  16. child11.arr // [1, 2, 3, 4]
  17. child12.arr // [1, 2, 3]

优点:构造函数的属性具有唯一性(child11.arr 与 child12.arr),可参考红皮书里的细节
缺点:只能继承父类函数的方法和属性,而不能继承原型对象的方法和属性

基于原型链的继承

  1. function Parent2() {
  2. this.parent2 = 'parent2'
  3. this.arr = [1, 2, 3]
  4. }
  5. Parent2.prototype.walk = 'I can walk'
  6. function Child2() {
  7. this.child2 = 'child2'
  8. }
  9. Child2.prototype = new Parent2()
  10. const child21 = new Child2()
  11. const child22 = new Child2()
  12. // 测试
  13. child21.parent2 // parent2
  14. child21.walk // I can walk
  15. child21.arr.push(4)
  16. child21.arr // [1, 2, 3, 4]
  17. child22.arr // [1, 2, 3, 4]

优点:继承父类函数的方法和属性同时继承了原型对象的方法和属性
缺点:当在一个子类的实例上修改父类的属性和方法时,其它的子类也会受到影响(相当于改变了子类原型链上的属性,可以参考二刷高程

——— 补充 ———

补充下 Object.create() 这个 api,也将它归类到基于原型链的继承。当继承的对象属性没变化时,可以使用它。

优点:可以少写一个构造函数
缺点:同上述基于原型链继承的缺点

组合继承

  1. function Parent3() {
  2. this.parent3 = 'parent3'
  3. this.arr = [1, 2, 3]
  4. }
  5. Parent3.prototype.walk = 'I can walk'
  6. function Child3() {
  7. Parent3.call(this) // 这里执行第一次父类
  8. this.child3 = 'child3'
  9. }
  10. Child3.prototype = new Parent3() // 这里执行第二次父类,原型继承发现只要把父子的原型对象绑定起来就好,可以写成 Child3.prototype = new Parent3()>__proto__ 也正常
  11. const child31 = new Child3()
  12. const child32 = new Child3()
  13. // 测试
  14. child31.parent3 // parent3
  15. child31.walk // I can walk
  16. child31.arr.push(4)
  17. child31.arr // [1, 2, 3, 4]
  18. child32.arr // [1, 2, 3]

优点:结合了构造函数继承和原型链继承的优点

缺点:父类方法调用了两次,而且不能判断实例的构造函数是子类还是父类

组合继承优化一

  1. function Parent4() {
  2. this.parent4 = 'parent4'
  3. this.arr = [1, 2, 3]
  4. }
  5. Parent4.prototype.walk = 'I can walk'
  6. function Child4() {
  7. Parent4.call(this)
  8. this.child4 = 'child4'
  9. }
  10. Child4.prototype = Parent4.prototype
  11. const child41 = new Child4()
  12. const child42 = new Child4()
  13. // 测试
  14. child41.parent4 // parent4
  15. child41.walk // I can walk
  16. child41.arr.push(4)
  17. child41.arr // [1, 2, 3, 4]
  18. child42.arr // [1, 2, 3]
  19. child41.constructor // Parent4

优点:解决了调用两次的问题
缺点:不能判断实例的构造函数是子类还是父类(此时 child41、child42 的构造函数指向 Parent4)

组合继承优化二

  1. function Parent5() {
  2. this.parent5 = 'parent5'
  3. this.arr = [1, 2, 3]
  4. }
  5. Parent5.prototype.walk = 'I can walk'
  6. function Child5() {
  7. Parent5.call(this)
  8. this.child5 = 'child5'
  9. }
  10. Child5.prototype = Object.create(Parent5.prototype) // Object.create() 创建了一个中间对象,起到隔离子类和父类的作用。
  11. Child5.prototype.constructor = Child5
  12. const child51 = new Child5()
  13. const child52 = new Child5()
  14. // 测试
  15. child51.parent5 // parent5
  16. child51.walk // I can walk
  17. child51.arr.push(4)
  18. child51.arr // [1, 2, 3, 4]
  19. child52.arr // [1, 2, 3]
  20. child51.constructor // Child5

Object.create() 的作用:Object.create(Parent5.prototype) 相当于一个空对象 {},这个空对象的 proto 等于 Parent5.prototype,所以这时候我们修改 Child5.prototype.constructor 实际上是在空对象上加上 constructor 属性。

优点:解决了不能判断实例的构造函数是子类还是父类的问题

揭秘 ES6 继承之 super

constructor 中的 super

  1. function Parent(props) {
  2. this.props = props
  3. }
  4. class Child extends Parent {
  5. constructor() {
  6. super() // 这里
  7. }
  8. }
  9. var child = new Child({a: 1})
  10. console.log(child.props) // undefined

为什么这里 child.props 会输出 undefined 呢,让我们接着看以下两个例子。

  1. function Parent(props) {
  2. this.props = props
  3. }
  4. class Child extends Parent {
  5. constructor(props) {
  6. super(props)
  7. }
  8. }
  9. var child = new Child({a: 1})
  10. console.log(child.props) // {a: 1}
  1. function Parent(props) {
  2. this.props = props
  3. }
  4. class Child extends Parent {
  5. }
  6. var child = new Child({a: 1})
  7. console.log(child.props) // {a: 1}

可以看到第二种情况和第三种情况是相等的。继承中,当子类没有写 constructor 时,它会自动加上如下代码:

  1. constructor(props) {
  2. super(props)
  3. }

简单作个结论:当 ES6 的类函数中有 constructor 和 super 时,它们后面必须得跟个参数 props(名字随意),否则原型链上的对象无法获取到相应属性。

将之翻译成 ES5,代码如下:

  1. function Parent(props) {
  2. this.props = props
  3. }
  4. function Child(props) {
  5. Parent.call(this, props) // 这里等价于 ES6 中 super(props)
  6. }
  7. Child.prototype = new Parent()
  8. var child = new Child({a: 1})

作为对象调用的 super

在下面的案例中,super 作为对象调用,那么它指向什么呢?

  1. class Parent {
  2. parentFn() {
  3. console.log('I am parentFn')
  4. }
  5. }
  6. class Child extends Parent {
  7. childFn() {
  8. console.log(super.constructor)
  9. super.parentFn()
  10. }
  11. }
  12. var child = new Child()
  13. child.childFn()
  14. // Class Parent { ... }
  15. // I am parentFn

打印结果已经作出了回答。super 在作为对象调用时,它指向了父类对象的实例。