js闭包
function f1() { var n = 999; nAdd = function () { n += 1 }; function f2() { alert(n); } return f2; } var result = f1(); result(); // 999 nAdd(); result(); // 1000
Javascript内存回收机制是这样的:
“如果一个对象不再被引用,那么这个对象就会被GC回收。如果两个对象互相引用,而不再被第3者所引用,那么这两个互相引用的对象也会被回收。因为函数f1被nAdd引用,nAdd又被f1外的result引用,这就是为什么函数f1执行后不会被回收的原因。”
A closure is an expression
(typically a function) that can have free variables together with an environment
that binds those variables (that "closes" the expression).
Since a nested function is a
closure, this means that a nested function can "inherit" the arguments and
variables of its containing function. In other words, the inner function
contains the scope of the outer function.
(参考:https://developer.mozilla.org/en-US/docs/JavaScript/Reference/Functions_and_function_scope#Nested_functions_and_closures)
也可以用setInterval或setTimeout来实现闭包
var outerFunc = function() { var foo = ‘success!‘; setInterval(function(){alert(foo)}, 3000); }; outerFunc();
郑重声明:本站内容如果来自互联网及其他传播媒体,其版权均属原媒体及文章作者所有。转载目的在于传递更多信息及用于网络分享,并不代表本站赞同其观点和对其真实性负责,也不构成任何其他建议。