gpt4 book ai didi

Javascript继承和方法覆盖

转载 作者:IT王子 更新时间:2023-10-29 03:19:11 26 4
gpt4 key购买 nike

假设我有这样一个类:

function Widget() {
this.id = new Date().getTime();
// other fields
}
Widget.prototype = {
load: function(args) {
// do something
}
}

我从这个类创建了一些继承相同原型(prototype)但添加了一些方法的其他类。我想要做的是能够在子类中定义一个 load() 方法,它首先调用父方法然后执行一些代码。像这样的东西:

SpecialWidget.prototype = {
load: function(args) {
super.load(args);
// specific code here
}
}

我知道 Javascript 中没有 super 关键字,但必须有办法做到这一点。

最佳答案

你可以这样模拟:

SpecialWidget.prototype = {
load: function(args) {
Widget.prototype.load.call(this, args);
// specific code here
}
}

或者您可以像这样创建自己的 super 属性:

SpecialWidget.prototype.parent = Widget.prototype;

SpecialWidget.prototype = {
load: function(args) {
this.parent.load.call(this,args);
// specific code here
}
}

关于Javascript继承和方法覆盖,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/4777522/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com