admin管理员组文章数量:1347403
function f() {
const w = new WeakMap();
const o = {};
w.set(o, { v: o });
return w;
}
const weakMap = f();
For the given code, would the only weakMap
item considered as reachable or not? Hence, will it be garbage collected or not?
PS: This question is asked from the perspective of the specification, not particular implementations.
function f() {
const w = new WeakMap();
const o = {};
w.set(o, { v: o });
return w;
}
const weakMap = f();
For the given code, would the only weakMap
item considered as reachable or not? Hence, will it be garbage collected or not?
PS: This question is asked from the perspective of the specification, not particular implementations.
Share Improve this question edited Oct 13, 2016 at 1:36 zerkms asked Sep 21, 2015 at 3:53 zerkmszerkms 255k73 gold badges447 silver badges547 bronze badges 24- 1 It's not supposed to. Things that only have circular references are eligible for garbage collection so should not stay in the weakMap. – jfriend00 Commented Sep 21, 2015 at 3:55
- I was saying that it should get released because there are no external references to it and thus it is not reachable elsewhere. – jfriend00 Commented Sep 21, 2015 at 3:57
-
1
I see where you are ing from and the question itself is reasonable, but I don't think I'd personally categorize it as circular since
w
doesn't reference itself, and neither doeso
. – loganfsmyth Commented Sep 21, 2015 at 4:03 -
1
@zerkms "So the hash table not only stores the hashes but the original keys as well" Yep, I agree. That's why I said "
w
referenceso
and{ v: o }
". It sounds like our disagreement is here: "which means that the linked list element contains both the data and the key and both of them refer to each other". What I'm saying is that the key and value do not refer to each other, the HashTable just refers to both of them. Neither of those objects contain references to each other. All references to those objects are within the HashTable itself. – Ajedi32 Commented Oct 22, 2015 at 23:45 - 1 Yep, now I see and now I agree that it's a DAG, not a cyclic graph. Not sure how to improve the subject though, since it's already put in quotes. – zerkms Commented Oct 22, 2015 at 23:45
1 Answer
Reset to default 17Quoting WeakMap
Objects section,
If an object that is being used as the key of a WeakMap key/value pair is only reachable by following a chain of references that start within that WeakMap, then that key/value pair is inaccessible and is automatically removed from the WeakMap.
In your case, the only way to reach o
would be to start from one of the keys in the weakMap
, as there is no external references to it. So, it would be considered as inaccessible.
WeakMap implementations must detect and remove such key/value pairs and any associated resources.
So, it would be eventually garbage collected.
本文标签:
版权声明:本文标题:javascript - Would a "circular" reference be treated as "reachability" for a WeakMap? - Stac 内容由网友自发贡献,该文观点仅代表作者本人, 转载请联系作者并注明出处:http://www.betaflare.com/web/1743836114a2547427.html, 本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌抄袭侵权/违法违规的内容,一经查实,本站将立刻删除。
发表评论