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

Views :
Update time : 2025-06-23 23:30:17

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

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

先来演示一个能正常引用的: 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 为什么有些NAS用户弄那么多硬盘?
2025-06-25 07:40:15
为什么有些NAS用户弄那么多硬盘?...
Blog Post With Youtube Video Rust开发Web后端效率如何?
2025-06-25 06:35:15
Rust开发Web后端效率如何?...
Blog Post With Youtube Video count(*) count(1)哪个更快?
2025-06-25 06:30:15
count(*) count(1)哪个更快?...
Blog Post With Youtube Video 为什么老外在中国追女生那么容易?
2025-06-25 07:10:20
为什么老外在中国追女生那么容易?...

Leave Your Message