面向对象高级② --对象的三种继承模式

原型链继承

  1. 套路
    1. 定义父类型构造函数
    2. 给父类型的原型添加方法
    3. 定义子类型的构造函数
    4. 创建父类型的对象赋值给子类型的原型
    5. 将子类型原型的构造属性设置为子类型
    6. 给子类型原型添加方法
    7. 创建子类型的对象: 可以调用父类型的方法
  2. 关键
    1. 子类型的原型为父类型的一个实例对象

例如:

<script type="text/javascript">
  //父类型
  function Supper() {
    
    
    this.supProp = 'Supper property'
  }
  Supper.prototype.showSupperProp = function () {
    
    
    console.log(this.supProp)
  }

  //子类型
  function Sub() {
    
    
    this.subProp = 'Sub property'
  }

  // 子类型的原型为父类型的一个实例对象
  Sub.prototype = new Supper()

  Sub.prototype.showSubProp = function () {
    
    
    console.log(this.subProp)
  }

  var sub = new Sub()
  sub.showSupperProp()
  // sub.toString()
  sub.showSubProp()

  console.log(sub)  // Sub

</script>

在这里插入图片描述

还有一个小缺漏:如果按照上面的代码,那么sub的构造器指向的是Supper,所以我们要在此基础上添加如下代码:

// 让子类型的原型的constructor指向子类型
 Sub.prototype.constructor = Sub

借用构造函数继承

  1. 套路:
    1. 定义父类型构造函数
    2. 定义子类型构造函数
    3. 在子类型构造函数中调用父类型构造
  2. 关键:
    1. 在子类型构造函数中通用call()调用父类型构造函数

本质上是一种假继承

例如:

<script type="text/javascript">
  function Person(name, age) {
    
    
    this.name = name
    this.age = age
  }
  function Student(name, age, price) {
    
    
    Person.call(this, name, age)  // 相当于: this.Person(name, age)
    /*this.name = name
    this.age = age*/
    this.price = price
  }

  var s = new Student('Tom', 20, 14000)
  console.log(s.name, s.age, s.price)

</script>

组合继承

  1. 利用原型链实现对父类型对象的方法继承
  2. 利用super()借用父类型构建函数初始化相同属性

例如:

<script type="text/javascript">
  function Person(name, age) {
    
    
    this.name = name
    this.age = age
  }
  Person.prototype.setName = function (name) {
    
    
    this.name = name
  }

  function Student(name, age, price) {
    
    
    Person.call(this, name, age)  // 为了得到属性
    this.price = price
  }
  Student.prototype = new Person() // 为了能看到父类型的方法
  Student.prototype.constructor = Student //修正constructor属性
  Student.prototype.setPrice = function (price) {
    
    
    this.price = price
  }

  var s = new Student('Tom', 24, 15000)
  s.setName('Bob')
  s.setPrice(16000)
  console.log(s.name, s.age, s.price)

</script>

猜你喜欢

转载自blog.csdn.net/zyb18507175502/article/details/124178140
今日推荐