全国旗舰校区

不同学习城市 同样授课品质

北京

深圳

上海

广州

郑州

大连

武汉

成都

西安

杭州

青岛

重庆

长沙

哈尔滨

南京

太原

沈阳

合肥

贵阳

济南

下一个校区
就在你家门口
+
当前位置:首页  >  应聘面试  >  html5面试题

如何实现继承

发布时间:2022-11-18 16:45:39
发布人:syq

  - 对于JavaScript来说,继承有两个要点:

  - 复用父构造函数中的代码 - 复用父原型中的代码第一种实现复用父构造函数中的代码,我们可以考虑调用父构造函数并将 this 绑定到子构造函数。

  - 第一种方法:复用父原型中的代码,我们只需改变原型链即可。将子构造函数的原型对象的 proto 属性指向父构造函数的原型对象。

如何实现继承

  - 第二种实现:使用 new 操作符来替代直接使用 proto 属性来改变原型链。

  - 第三种实现:使用一个空构造函数来作为中介函数,这样就不会将构造函数中的属性混到 prototype 中 function A(x, y) { this.x = x this.y = y } A.prototype.run = function () { } // 寄生继承 二者一起使用 function B(x, y) { A.call(this, x, y) // 借用继承 } B.prototype = new A() // 原型继承 // 组合继承 Function.prototype.extends = function (superClass) { function F() { } F.prototype = superClass.prototype if (superClass.prototype.constructor !== superClass) { Object.defineProperty(superClass.prototype, 'constructor', { value: superClass }) } let proto = this.prototype this.prototype = new F() let names = Reflect.ownKeys(proto) for (let i = 0; i < names.length; i++) { let desc = Object.getOwnPropertyDescriptor(proto, names[i]) Object.defineProperty(this.prototypr, name[i], desc) } this.prototype.super = function (arg) { superClass.apply(this, arg) } this.prototype.supers = superClass.prototype }

  - 第四种实现:es6类的继承extends。

相关文章

前端公司面试题——jquery移除class

2023-08-07

前端JavaScript面试题——js时间戳转换时间的方法

2023-08-04

前端中JavaScript常见的面试题——js年月日转为时间戳

2023-08-02

前端jquery面试题——jquery字符串包含哪些?

2023-08-01

前端JavaScript面试题——js如何创建函数?

2023-07-31

前端程序员面试题——jquery发送get请求的步骤

2023-07-28
在线咨询 免费试学 教程领取