gpt4 book ai didi

JavaScript WeakMap 不断引用 gc'ed 对象

转载 作者:塔克拉玛干 更新时间:2023-11-02 20:56:59 25 4
gpt4 key购买 nike

我正在使用 JavaScript weakmaps,在 google chrome 开发者控制台中尝试这段代码后,使用 --js-flags="--expose-gc"运行,我不明白为什么 weakmap 一直引用 a.b如果 a 被 gc 了。

var a = {listener: function(){ console.log('A') }}
a.b = {listener: function(){ console.log('B') }}

var map = new WeakMap()

map.set(a.b, [])
map.set(a, [a.b.listener])

console.log(map) // has both a and a.b

gc()
console.log(map) // still have both a and a.b

a = undefined
gc()
console.log(map) // only have a.b: why does still have a reference to a.b? Should'nt be erased?

最佳答案

2020 年 2 月更新

当我现在运行这段代码时,它按预期工作。我认为打开控制台会导致在以前版本的 Chrome 中保留对象,但现在不会。重新分配持有对象引用的变量的值将导致该对象被垃圾回收(假设没有其他对象引用它)。


在您的示例代码中,您没有释放您的 a 变量。它是一个顶级 var,永远不会超出范围,也永远不会被显式取消引用,因此它保留在 WeakMap 中。一旦代码中不再引用 Wea​​kMap/WeakSet 就会释放对象。在您的示例中,如果您在 gc() 调用之一之后 console.log(a) ,您仍然希望 a 是活着,对吧?

下面是一个工作示例,展示了 WeakSet 的实际应用,以及它如何在所有引用都消失后删除一个条目:https://embed.plnkr.co/cDqi5lFDEbvmjl5S19Wr/

const wset = new WeakSet();

// top level static var, should show up in `console.log(wset)` after a run
let arr = [1];
wset.add(arr);

function test() {
let obj = {a:1}; //stack var, should get GCed
wset.add(obj);
}

test();

//if we wanted to get rid of `arr` in `wset`, we could explicitly de-reference it
//arr = null;

// when run with devtools console open, `wset` always holds onto `obj`
// when devtools are closed and then opened after, `wset` has the `arr` entry,
// but not the `obj` entry, as expected
console.log(wset);

请注意,打开 Chrome 开发工具会阻止某些对象被垃圾回收,这使得实际操作比预期的更困难:)

关于JavaScript WeakMap 不断引用 gc'ed 对象,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/38203446/

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