J***aScript的闭包会无法被垃圾回收吗?

Views :
Update time : 2025-06-24 21:10:11

你理解反了吧,正因为无法引用到它,所以才会被垃圾回收。

垃圾回收靠的就是从根节点开始遍历所有对象,遍历不到的就是垃圾。

先来演示一个能正常引用的: function outer() { let str = "string"; function inner() { console.log(str); } return inner; } window.foo = outer(); outer 返回的 inner 函数由于被全局变量 foo 所引用,所以相关的一系类对象都不会被垃圾回收。

在 DevTools 内存分析面板可以看到,存在一个 contex…。

J***aScript的闭包会无法被垃圾回收吗?
Related News
Read More >>
Blog Post With Youtube Video Vue性能优于React,那为什么还不用Vue?
2025-06-28 12:45:11
Vue性能优于React,那为什么还不用Vue?...
Blog Post With Youtube Video 上学要不要穿内衣?
2025-06-28 12:00:12
上学要不要穿内衣?...
Blog Post With Youtube Video 那些辞职的公务员,你们现在后悔么?
2025-06-28 13:20:11
那些辞职的公务员,你们现在后悔么?...
Blog Post With Youtube Video 什么东西你可以接受二手的?
2025-06-28 12:20:11
什么东西你可以接受二手的?...

Leave Your Message