JavaScript 继承的实现方法有哪些?分别怎么写?

🌙
手机阅读
本文目录结构

问题

继承的实现方法有哪些?分别怎么写?

答案

js实现继承的5种方式;

根据js语言的本身的特性,js实现继承有以下通用的几种方式;

1. 使用对象冒充实现继承

该种实现方式可以实现多继承

实现原理:让父类的构造函数成为子类的方法,然后调用该子类的方法,通过this关键字给所有的属性和方法赋值

function Parent (firstname) {
  this.fname = firstname;
  this.age = 30;
  this.sayAge = function () {
    console.log(this.age)
  }
}

function Child (firstname) {
  this.parent = Parent;
  this.parent(firstname);
  delete this.parent;

  this.saySomeThing = function () {
    console.log(this.fname)
    this.sayAge();
  }
}

var mychild = new Child('anbang')
mychild.saySomeThing();

2. 采用call方法改变函数上下文实现继承

该种方式不能继承原型链,若想继承原型链,则采用5混合模式

实现原理:改变函数内部的函数上下文this,使它指向传入函数的具体对象;

function Parent (firstname) {
  this.fname = firstname;
  this.age = 30;
  this.sayAge = function () {
    console.log(this.age)
  }
}

function Child (firstname) {
  this.saySomeThing = function () {
    console.log(this.fname)
    this.sayAge();
  }
  this.getName = function () {
    return firstname;
  }
}

var child = new Child('anbang')
Parent.call(child, child.getName())
child.saySomeThing();

3. 采用Apply方法改变函数上下文实现继承

该种方式不能继承原型链,若想继承原型链,则采用5混合模式

实现原理:改变函数内部的函数上下文this,使它指向传入函数的具体对象

function Parent (firstname) {
  this.fname = firstname;
  this.age = 30;
  this.sayAge = function () {
    console.log(this.age)
  }
}

function Child (firstname) {
  this.saySomeThing = function () {
    console.log(this.fname)
    this.sayAge();
  }
  this.getName = function () {
    return firstname;
  }
}

var child = new Child('anbang')
Parent.apply(child, [child.getName()])
child.saySomeThing();

4. 采用原型链的方式实现继承

实现原理:使子类原型对象指向父类的实例以实现继承,即重写类的原型,弊端是不能直接实现多继承

function Parent () {
  this.sayAge = function () {
    console.log(this.age)
  }
}

function Child (firstname) {
  this.fname = firstname;
  this.age = 30;
  this.saySomeThing = function () {
    console.log(this.fname)
    this.sayAge();
  }
}
Child.prototype = new Parent();
var child = new Child('anbang')
child.saySomeThing();

5. 采用混合模式实现继承

function Parent () {
  this.sayAge = function () {
    console.log(this.age)
  }
}
Parent.prototype.sayParent = function () {
  console.log("sayParent")
}
function Child (firstname) {
  Parent.call(this);
  this.fname = firstname;
  this.age = 30;
  this.saySomeThing = function () {
    console.log(this.fname)
    this.sayAge();
  }
}
Child.prototype = new Parent();
var child = new Child('anbang')
child.saySomeThing();
child.sayParent();

更多面试题

如果你想了解更多的前端面试题,可以查看本站的WEB前端面试题 ,这里基本包涵了市场上的所有前端方面的面试题,也有一些大公司的面试图,可以让你面试更加顺利。

面试题
HTML CSS JavaScript
jQuery Vue.js React
算法 HTTP Babel
BootStrap Electron Gulp
Node.js 前端经验相关 前端综合
Webpack 微信小程序 -

这些题库还在更新中,如果你有不错的面试题库欢迎分享给我,我整理后放上来;人人为我,我为人人,互帮互助,共同提高,祝大家都拿到心仪的Offer!

AXIHE / 精选资源

浏览全部教程

面试题

学习网站

前端培训
自己甄别

前端书籍

关于朱安邦

我叫 朱安邦,阿西河的站长,在杭州。

以前是一名平面设计师,后来开始接接触前端开发,主要研究前端技术中的JS方向。

业余时间我喜欢分享和交流自己的技术,欢迎大家关注我的 Bilibili

关注我: Github / 知乎

于2021年离开前端领域,目前重心放在研究区块链上面了

我叫朱安邦,阿西河的站长

目前在杭州从事区块链周边的开发工作,机械专业,以前从事平面设计工作。

2014年底脱产在老家自学6个月的前端技术,自学期间几乎从未出过家门,最终找到了满意的前端工作。更多>

于2021年离开前端领域,目前从事区块链方面工作了