JavaScript 中 WeakMap 的正确用法是什么?使用时可能会出现什么样的计时问题?特别是,我想知道在以下情况下会发生什么:
var wm1 = new WeakMap()
var o1 = {},
o2 = function(){},
o3 = window;
// in other method:
wm1.set(o1, 37);
wm1.set(o2, "azerty");
if (wm1.has(o2)) {
//Garbage collection happen here, objects from wm1 may no longer exists
Console.log(wm1.get(o2)) // what will happen here? just undefined? null?
}
GC 将如何影响 WeakMaps?
更新:我的错,我错过了在 WeakMap 中不能将字符串作为键的事实,如果我考虑到这一事实,我的问题就不会提出。