问题描述
为什么在 JavaScript 类中箭头函数优先于函数声明?
Why do arrow functions take precedence over function declarations in JavaScript Classes?
例子:
class Parent {
work = () => {
console.log('This is work() on the Parent class');
}
}
class Child extends Parent {
work() {
console.log("This is work() on the Child class ");
}
}
const kid = new Child();
kid.work();
在这个例子中触发了父 work() 方法:
The parent work() method fires in this example :
这是父类上的 work()"
我只是想了解为什么箭头函数在 JS 类中总是优先,尤其是在继承和多态方面.
I just want to understand WHY the arrow function always takes precedence in JS Classes, especially in regards to Inheritance and Polymorphism.
推荐答案
跟做箭头函数没关系.它优先,因为它是 类字段.类字段被添加为实例的 own 属性,而方法被添加到 Child.prototype.work.即使你把它从箭头函数改成普通函数,它仍然会执行类字段.
It is nothing to do with being an arrow function. It is taking precedence because it's a class field. Class fields are added as an own property of the instance while methods are added to Child.prototype.work. Even if you change it from an arrow function to a regular function, it will still execute the class field.
当你访问kid.work时,查看属性的顺序是
When you access kid.work, the order in which the property will be looked is
- 自己的属性,直接在
kid对象下(可以在这里找到) Child.prototype.workParent.prototype.work- 如果还没有找到,就会在
Object.prototype里面找
- own properties, directly under
kidobject (It is found here) Child.prototype.workParent.prototype.work- If still not found, it will be looked inside
Object.prototype
class Parent {
// doesn't matter if it an arrow function or not
// prop = <something> is a class field
work = function() {
console.log('This is work() on the Parent class');
}
}
class Child extends Parent {
// this goes on Child.prototype not on the instance of Child
work() {
console.log("This is work() on the Child class ");
}
}
const kid = new Child();
// true
console.log( kid.hasOwnProperty("work") )
// true
console.log( Child.prototype.hasOwnProperty("work") )
// false
// because work inside Parent is added to each instance
console.log( Parent.prototype.hasOwnProperty("work") )
kid.work();
// How to force the Child method
Child.prototype.work.call(kid)
这篇关于在 JavaScript 类中使用箭头函数的继承和多态的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持跟版网!




大气响应式网络建站服务公司织梦模板
高端大气html5设计公司网站源码
织梦dede网页模板下载素材销售下载站平台(带会员中心带筛选)
财税代理公司注册代理记账网站织梦模板(带手机端)
成人高考自考在职研究生教育机构网站源码(带手机端)
高端HTML5响应式企业集团通用类网站织梦模板(自适应手机端)