gpt4 book ai didi

javascript - javascript 中包含 "instance"的新元素

转载 作者:行者123 更新时间:2023-11-28 02:54:37 27 4
gpt4 key购买 nike

所以我知道有很多方法可以模拟继承和其他面向对象的功能。我选择了一个用于我的项目,并且想知道是否可以创建一个实例并向其添加内容并将其包含在其中(在大括号内)。考虑以下因素:

function BaseClass(){
<this.stuff here>
}

function SubClass(){
this.superClass = BaseClass();
this.superClass();

<this.other stuff here>
}

myObj = new SubClass();

所以 myObj 是 SubClass 的一个实例。我可以向 myObj 添加一些内容,例如:

myObj.blah = "funtimes";

我想要的是能够向“实例”添加内容,并像构造函数一样将其组织在大括号中。伪代码如下:

myObj = new SubClass() {
var blah = "funtimes"
<more instance specific stuff here>
}

这样的事情可能吗?谢谢!

最佳答案

您可以使用with statement ,但是I do not recommend it .

关于javascript - javascript 中包含 "instance"的新元素,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/2992513/

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