前端开发那些事儿

JS的五种继承方式

2021-07-12  本文已影响0人  大佬教我写程序

原型对象

JS五种继承方式

方式一:原型链继承
function Parent(name) {
  this.name = name || '⽗亲'; // 实例基本属性 (该属性,强调私有,不共享)
  this.arr = [1]; // (该属性,强调私有)
}
Parent.prototype.say = function() { // -- 将需要复⽤、共享的⽅法定义在⽗类原型上
  console.log('hello')
}

function Child(like) {
  this.like = like;
}
Child.prototype = new Parent() // 核⼼,但此时Child.prototype.constructor==Parent
Child.prototype.constructor = Child // 修正constructor指向
let boy1 = new Child()
let boy2 = new Child()
  // 优点:共享了⽗类构造函数的say⽅法
console.log(boy1.say(), boy2.say(), boy1.say === boy2.say); // hello , hello , true
// 缺点1:不能向⽗类构造函数传参
console.log(boy1.name, boy2.name, boy1.name === boy2.name); // ⽗亲,⽗亲,true
/ 缺点2: ⼦类实例共享了⽗类构造函数的引⽤属性,⽐如arr属性
boy1.arr.push(2);
// 修改了boy1的arr属性,boy2的arr属性,也会变化,因为两个实例的原型上(Child.prototype)有了⽗类构造函数的实例属性arr;
所以只要修改了boy1.arr, boy2.arr的属性也会变化。
console.log(boy2.arr); // [1,2]
方式二:借用构造函数
function Parent(name) {
  this.name = name; // 实例基本属性 (该属性,强调私有,不共享)
  this.arr = [1]; // (该属性,强调私有)
  this.say = function() { // 实例引⽤属性 (该属性,强调复⽤,需要共享)
    console.log('hello')
  }
}

function Child(name, like) {
  Parent.call(this, name); // 核⼼ 拷⻉了⽗类的实例属性和⽅法
  this.like = like;
}
let boy1 = new Child('⼩红', 'apple');
let boy2 = new Child('⼩明', 'orange ');
// 优点1:可向⽗类构造函数传参
console.log(boy1.name, boy2.name); // ⼩红, ⼩明
// 优点2:不共享⽗类构造函数的引⽤属性
boy1.arr.push(2);
console.log(boy1.arr, boy2.arr); // [1,2] [1]
// 缺点1:⽅法不能复⽤
console.log(boy1.say === boy2.say) // false (说明,boy1和boy2的say⽅法是独⽴,不是共享的)
  // 缺点2:不能继承⽗类原型上的⽅法
Parent.prototype.walk = function() { // 在⽗类的原型对象上定义⼀个walk⽅法。
  console.log('我会⾛路')
}
boy1.walk; // undefined (说明实例,不能获得⽗类原型上的⽅法)
方式三:组合继承
function Parent(name) {
  this.name = name; // 实例基本属性 (该属性,强调私有,不共享)
  this.arr = [1]; // (该属性,强调私有)
}
Parent.prototype.say = function() { // --- 将需要复⽤、共享的⽅法定义在⽗类原型上
  console.log('hello')
}

function Child(name, like) {
  Parent.call(this, name, like) // 核⼼ 第⼆次
  this.like = like;
}
Child.prototype = new Parent() // 核⼼ 第⼀次
Child.prototype.constructor = Child // 修正constructor指向
let boy1 = new Child('⼩红', 'apple')
let boy2 = new Child('⼩明', 'orange')
  // 优点1:可以向⽗类构造函数传参数
console.log(boy1.name, boy1.like); // ⼩红,apple
// 优点2:可复⽤⽗类原型上的⽅法
console.log(boy1.say === boy2.say) // true
  // 优点3:不共享⽗类的引⽤属性,如arr属性
boy1.arr.push(2)
console.log(boy1.arr, boy2.arr); // [1,2] [1] 可以看出没有共享arr属性。
// 缺点1:由于调⽤了2次⽗类的构造⽅法,会存在⼀份多余的⽗类实例属性
方式四:组合继承优化
function Parent(name) {
  this.name = name; // 实例基本属性 (该属性,强调私有,不共享)
  this.arr = [1]; // (该属性,强调私有)
}
Parent.prototype.say = function() { // --- 将需要复⽤、共享的⽅法定义在⽗类原型上
  console.log('hello')
}

function Child(name, like) {
  Parent.call(this, name, like) // 核⼼
  this.like = like;
}
Child.prototype = Parent.prototype // 核⼼ ⼦类原型和⽗类原型,实质上是同⼀个
  <!--这⾥是修复构造函数指向的代码-->
Child.prototype.constructor = Child
let boy1 = new Child('⼩红', 'apple')
let boy2 = new Child('⼩明', 'orange')
let p1 = new Parent('⼩爸爸')
  // 优点1:可以向⽗类构造函数传参数
console.log(boy1.name, boy1.like); // ⼩红,apple
// 优点2:可复⽤⽗类原型上的⽅法
console.log(boy1.say === boy2.say) // true
  // 缺点1:当修复⼦类构造函数的指向后,⽗类实例的构造函数指向也会跟着变了。
没修复之前: console.log(boy1.constructor); // Parent
修复代码: Child.prototype.constructor = Child
修复之后: console.log(boy1.constructor); // Child
console.log(p1.constructor); // Child 这⾥就是存在的问题(我们希望是Parent)
具体原因: 因为是通过原型来实现继承的, Child.prototype的上⾯ 是没有constructor属性的,
就会往上找, 这样就找到了Parent.prototype上⾯ 的constructor属性; 当你修改了⼦ 类实例的
construtor属性, 所有的constructor的指向都会发⽣ 变化。
方式五:寄生组合继承-----完美继承
function Parent(name) {
  this.name = name; // 实例基本属性 (该属性,强调私有,不共享)
  this.arr = [1]; // (该属性,强调私有)
}
Parent.prototype.say = function() { // --- 将需要复⽤、共享的⽅法定义在⽗类原型上
  console.log('hello')
}

function Child(name, like) {
  Parent.call(this, name, like) // 核⼼
  this.like = like;
}
// 核⼼ 通过创建中间对象,⼦类原型和⽗类原型,就会隔离开。不是同⼀个啦,有效避免了⽅式4的缺点。
Child.prototype = Object.create(Parent.prototype)
  // 这⾥是修复构造函数指向的代码
Child.prototype.constructor = Child
let boy1 = new Child('⼩红', 'apple')
let boy2 = new Child('⼩明', 'orange')
let p1 = new Parent('⼩爸爸')

相关知识点

const a = Object.create(Person.prototype, {
  age: {
    value: 12,
    writable: true,
    configurable: true,
  }
})
上一篇下一篇

猜你喜欢

热点阅读