gpt4 book ai didi

javascript - 这个和原型(prototype)继承比直接引用更能提高性能吗?

转载 作者:行者123 更新时间:2023-11-29 17:47:09 25 4
gpt4 key购买 nike

<分区>

这样做更好吗...

var obj1 = {
a: function(){...}
}
var obj2 = Object.assign(Object.create(obj1),{
b: function(){ this.a(); }
});
obj2.b();

或者...

var obj1 = {
a: function(){...}
}
var obj2 = {
b: function(){ obj1.a(); }
});
obj2.b();

我主要使用第一种模式构建 Web 应用程序,但我开始质疑使用“this”对性能的影响是否真的值得额外的步骤。

抱歉,如果这是愚蠢的或以前发布过,我仍在努力思考原型(prototype)继承的想法,这真的很令人困惑

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