gpt4 book ai didi

java - 如果对象 a 和 b 只相互引用,GC 会收集它们吗?

转载 作者:搜寻专家 更新时间:2023-10-31 19:34:31 27 4
gpt4 key购买 nike

如果 a 和 b 只相互引用,GC 会回收它们吗?你能帮忙解释一下原因或给一个引用文件来解释这个逻辑吗?非常感谢

最佳答案

是的,如果不存在对它的更多强引用,它们将成为 GC 的候选者。

It's important to note that not just any strong reference will hold an object in memory. These must be references that chain from a garbage collection root. GC roots are a special class of variable that includes :

  • 栈上的临时变量(任何线程的)
  • 静态变量(来自任何类)
  • 来自 JNI native 代码的特殊引用

请参阅此文档 (§ A.3.4 Unreachable and §A.4.2 Example GC with WeakReference)

关于java - 如果对象 a 和 b 只相互引用,GC 会收集它们吗?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/10861231/

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