盗贼大师回答了你的问题。是的,此代码将使用越来越多的内存,具体取决于您的数组包含多少闭包。不得不说,大多数现代引擎都会为分配给变量的函数分配一个引用,以及一个包含闭包变量MyFunct
的特定“调用对象” 。换句话说,您的数组看起来类似于:
myFuncArray[0] = {call:
{myPoint:'Whatever value was passed to the addValues function the first time'},
valueOf: myFunct};
//the actual value is a reference to myFunct
//JS provides an implicit link to the call property, which is bound to this particular reference
myFuncArray[1] = {call:
{myPoint:'The value passed to addValues the second time'},
valueOf: myFunct};
您无法访问对象本身,但这只是思考 JS 如何将事物组织在内存中的方式。
稍微偏离主题,但您正在使用MyFunct
变量创建一个隐含的全局:
function addValues(myPoint)
{
var anotherClosureVar = 'This will be accessible, too: it\'s part of the closure';
var myFunct = function()
{//use var to declare in addValues scope, instead of using an implied global
var myVar="Line " + myPoint;
console.log(myVar);
console.log(anotherClosureVar);//will work, too
};
myFunctArray.push(myFunct);
}
总而言之,如果这是您的代码,内存应该不是什么大问题。即使这段代码要在旧的 JScript 引擎上运行,也需要一些时间才能用完大量的内存。
尽管如此,考虑这样的事情是一个好习惯,我希望我在这里说得通,我不是母语人士,这使得解释 JS 更抽象的方面有些棘手