摘要:举个栗子中一段简单的继承代码实现使用了,不会报错这段代码非常简单,在子类中使用了关键字,编译时不会报错,也可以正常执行。参考资料从中的讲原型链与继承的静态属性和实例属性
问题引入
最近一直在看原型继承相关的东西,翻到这么一篇文章: 从ES6中的extends讲js原型链与继承
文中有一个点让我很感兴趣,箭头函数在继承过程中无法通过super关键字获取,这是为什么呢?
前置知识 MDN上关于super的介绍The super keyword is used to access and call functions on an object"s parent - in MDN
大概有这么几个关键点:
子类中存在constructor方法的时候,需要调用super方法,并且需要在使用this关键字之前调用
super关键字可以用来调用父对象上的方法
可以使用super来调用父对象上的静态方法
不可以使用delete来删除super上的属性
不可以复写super对象上的只读属性
子类中是否必须主动调用super方法?我的看法是不需要。
网上有些文章(比如这篇)写道:
因为若不执行super,则this无法初始化。
我的个人理解是,this是指代执行上下文环境的,不存在无法初始化的情况。更准确的说法是这样:如果不使用super方法,那么父类中的属性值无法进行初始化,如果这个时候子类通过this字段来访问了父类中的属性值,那么只能得到一个undefined。至于为什么这么写编译的时候会报错?我的理解是,这应该是一种语法错误,而且是一种规范要求,ES6语法的规范要求,这种要求并不是说会影响到代码的实际执行。举个栗子:
// typescript中一段简单的继承代码实现 class Parent { name = "parent"; func = function() { console.log("func in parent called."); } } class Child extends Parent { age = 3; func = function() { console.log("age is: ", this.age); // 使用了this,不会报错 } }
这段代码非常简单,在子类中使用了this关键字,编译时不会报错,也可以正常执行。然后我们进行一点修改,在子类中引入constructor方法
class Child extends Parent { age = 3; // error TS2377: Constructors for derived classes must contain a "super" call. constructor() { } func = function() { console.log("age is: ", this.age); } }
可以看到,编译阶段已经开始报错了。在typescript的语法中,子类的constructor方法中不但需要调用super方法,而且必须在第一行代码就调用super,否则都是会报错的。看下面这段代码:
class Child extends Parent { age = 3; constructor() { console.log("First line in constructor without super method"); super(); // error TS2376: A "super" call must be the first statement in the constructor when a class contains initialized properties or has parameter properties. } func = function() { console.log("age is: ", this.age); } }
来,我们接着改
class Parent { name = "parent"; func = function() { console.log("func in parent called."); } } class Child extends Parent { age = 3; constructor() { console.log("Show property of parent, name is: ", this.name); // error TS17009: "super" must be called before accessing "this" in the constructor of a derived class. console.log("Show property of child, age is: ", this.age); // error TS17009: "super" must be called before accessing "this" in the constructor of a derived class. super(); // error TS2376: A "super" call must be the first statement in the constructor when a class contains initialized properties or has parameter properties. console.log("Show property of parent, name is: ", this.name); console.log("Show property of child, age is: ", this.age); } func = function() { console.log("age is: ", this.age); } }
可以看到,编译期已经开始报各种错误了,不过这不重要,我们这里利用typescript的编译器(tsc)来进行编译,并查看编译后的代码内容:
var __extends = (this && this.__extends) || (function () { var extendStatics = Object.setPrototypeOf || ({ __proto__: [] } instanceof Array && function (d, b) { d.__proto__ = b; }) || function (d, b) { for (var p in b) if (b.hasOwnProperty(p)) d[p] = b[p]; }; return function (d, b) { extendStatics(d, b); function __() { this.constructor = d; } d.prototype = b === null ? Object.create(b) : (__.prototype = b.prototype, new __()); }; })(); var Parent = (function () { function Parent() { this.name = "parent"; this.func = function () { console.log("func in parent called."); }; } return Parent; }()); var Child = (function (_super) { __extends(Child, _super); function Child() { var _this = this; _this.age = 3; _this.func = function () { console.log("age is: ", this.age); }; console.log("Show property of parent, name is: ", _this.name); // 输出undefined,因为此时子类的实例上还没有继承到父类的属性值 console.log("Show property of child, age is: ", _this.age); // 输出3,子类实例自己的属性值可以访问 _this = _super.call(this) || this; // 构造函数式的继承实现,这一步就是讲父类的属性值设置到子类实例上 console.log("Show property of parent, name is: ", _this.name); // 输出parent,此时子类的实例上经过上一步的继承,得到了父类的属性值 console.log("Show property of child, age is: ", _this.age); // 输出3,子类实例自己的属性值可以访问 return _this; } return Child; }(Parent)); //# sourceMappingURL=demo.js.map
由此可以知道,在ES6中使用extends进行继承操作的过程中,
子类并非必须调用super方法,除非存在constructor方法
在constructor方法中应该首先调用super方法,这是语法要求,不过这不是必须的
在调用super方法之前,将无法通过this关键字来访问父类的属性(这里就可以解释其他文章中提到的 ‘若不执行super,则this无法初始化’,更准确的说法应该是‘若不执行super,则无法将父类的属性值初始化到当前子类实例上’)
子类中使用super.prop和super[expr]的方式是如何访问父类的属性和方法?我们直接来看代码吧,关键点都注释了的
class Parent { public name = "parent"; public static staticName = "staticParent"; public static staticFunc() { console.log("staticFunc called in parent."); } public arrowFunc = () => { console.log("arrowFunc called in parent."); } public normalFunc() { console.log("normalFunc called in parent.") } } class Child extends Parent { public static staticFunc() { super.staticFunc(); console.log("staticFunc called in Child."); } arrowFunc = () => { super.arrowFunc(); console.log("arrowFunc called in Child."); } normalFunc() { super.normalFunc(); console.log("normalFunc called in Child.") } getName() { console.log("parent name is: ", super.name); console.log("parent staticName is: ", super.staticName); console.log("child name is: ", this.name); } } /** 编译后的代码 **/ var __extends = (this && this.__extends) || (function () { var extendStatics = Object.setPrototypeOf || ({ __proto__: [] } instanceof Array && function (d, b) { d.__proto__ = b; }) || function (d, b) { for (var p in b) if (b.hasOwnProperty(p)) d[p] = b[p]; }; return function (d, b) { extendStatics(d, b); function __() { this.constructor = d; } d.prototype = b === null ? Object.create(b) : (__.prototype = b.prototype, new __()); }; })(); var Parent = (function () { function Parent() { this.name = "parent"; this.arrowFunc = function () { console.log("arrowFunc called in parent."); }; } // 编译后的静态方法可以存在于Parent类的内部 Parent.staticFunc = function () { console.log("staticFunc called in parent."); }; Parent.prototype.normalFunc = function () { console.log("normalFunc called in parent."); }; return Parent; }()); Parent.staticName = "staticParent"; // 编译后的静态属性依然存在于Parent类外 var Child = (function (_super) { __extends(Child, _super); function Child() { var _this = _super !== null && _super.apply(this, arguments) || this; _this.arrowFunc = function () { // 子类实例调用arrowFunc的时候会报错,因为_super.prototype上是不存在arrowFunc方法的 _super.prototype.arrowFunc.call(_this); // Uncaught TypeError: Cannot read property "call" of undefined console.log("arrowFunc called in Child."); }; return _this; } Child.staticFunc = function () { _super.staticFunc.call(this); // super可以正常访问父类的静态方法 console.log("staticFunc called in Child."); }; Child.prototype.normalFunc = function () { _super.prototype.normalFunc.call(this); console.log("normalFunc called in Child."); }; Child.prototype.getName = function () { console.log("parent name is: ", _super.prototype.name); // 输出undefined, 父类原型(_super.prototype)上不存在name属性 console.log("parent staticName is: ", _super.prototype.staticName); // 输出undefined,super无法正常访问父类的静态属性 console.log("child name is: ", this.name); // 输出parent,这是子类实例上的属性,继承自父类 }; return Child; }(Parent)); //# sourceMappingURL=demo.js.map
这里再顺嘴提一句,关于静态属性和静态方法的区别。为什么在子类中通过super关键字来获取父类的静态方法经过编译后是_super.staticFunc,而获取静态属性依然是_super.prototype.staticName,从原型上获取导致获取失败呢?这个问题目前我还没有找到答案,希望有知道的小伙伴可以不吝指教。
不过我倒是搜到一些其他相关内容。
Class 的静态属性和实例属性
因为 ES6 明确规定,Class 内部只有静态方法,没有静态属性。
虽然这种规定从ES7开始得到了修正,我们目前已经可以将静态属性写在Class的内部,但是经过编译之后可以发现,静态属性依然存在于类的实现的外部。
var Parent = (function () { function Parent() { this.name = "parent"; this.arrowFunc = function () { console.log("arrowFunc called in parent."); }; } // 编译后的静态方法可以存在于Parent类的内部 Parent.staticFunc = function () { console.log("staticFunc called in parent."); }; Parent.prototype.normalFunc = function () { console.log("normalFunc called in parent."); }; return Parent; }()); Parent.staticName = "staticParent"; // 编译后的静态属性依然存在于Parent类外回到问题本身
问:箭头函数在继承过程中无法通过super关键字获取,这是为什么呢?
答:因为子类中使用super.prop和super[expr]的方式获取的是父类原型(prototype)上的方法,静态方法除外。
从ES6中的extends讲js原型链与继承
React ES6 class constructor super()
Class 的静态属性和实例属性
文章版权归作者所有,未经允许请勿转载,若此文章存在违规行为,您可以联系管理员删除。
转载请注明本文地址:https://www.ucloud.cn/yun/97061.html
摘要:因为无法通过借用构造函数的方式创建响应式属性虽然属性可以被创建,但不具备响应式功能,因此在我们是没法继承数组的。上面整个的文章都是基于监听数组响应的一个点想到的。 前言 首先欢迎大家关注我的Github博客,也算是对我的一点鼓励,毕竟写东西没法获得变现,能坚持下去也是靠的是自己的热情和大家的鼓励。 从上一篇文章响应式数据与数据依赖基本原理开始,我就萌发了想要研究Vue源码的想法...
摘要:下面我们来使用面向对象类图这里就不再画了首先面试题中所提到的我们都可以看成类,比如停车场是一个类吧,它里面的车位是一个类吧,摄像头,屏幕。。。 以下是某场的一道面试题(大概): 1、一个停车场,车辆入场时,摄像头记录下车辆信息2、屏幕上显示所接收的车辆的信息情况(车牌号)以及各层车位的车位余量3、停车场一共四层车位,其中的三层都为普通车位,还有一层为特殊车位(体现在停车计费价格上面的不...
摘要:下面我们来使用面向对象类图这里就不再画了首先面试题中所提到的我们都可以看成类,比如停车场是一个类吧,它里面的车位是一个类吧,摄像头,屏幕。。。 以下是某场的一道面试题(大概): 1、一个停车场,车辆入场时,摄像头记录下车辆信息2、屏幕上显示所接收的车辆的信息情况(车牌号)以及各层车位的车位余量3、停车场一共四层车位,其中的三层都为普通车位,还有一层为特殊车位(体现在停车计费价格上面的不...
摘要:下面我们来使用面向对象类图这里就不再画了首先面试题中所提到的我们都可以看成类,比如停车场是一个类吧,它里面的车位是一个类吧,摄像头,屏幕。。。 以下是某场的一道面试题(大概): 1、一个停车场,车辆入场时,摄像头记录下车辆信息2、屏幕上显示所接收的车辆的信息情况(车牌号)以及各层车位的车位余量3、停车场一共四层车位,其中的三层都为普通车位,还有一层为特殊车位(体现在停车计费价格上面的不...
阅读 1972·2021-11-19 09:40
阅读 1910·2021-09-28 09:36
阅读 2202·2021-09-22 10:02
阅读 2702·2019-08-30 14:00
阅读 1921·2019-08-29 15:31
阅读 2867·2019-08-29 15:11
阅读 2870·2019-08-29 13:04
阅读 1062·2019-08-27 10:55