In Java, when does an object become unreachable?(在 Java 中,对象何时变得不可访问?)
问题描述
在 Java 中,什么是不可访问对象?什么时候对象变得不可访问?在研究垃圾收集时,我无法理解这个概念.
In Java, what is an unreachable object? When does the object become unreachable? While studying garbage collection I was not able to understand this concept.
任何人都可以通过示例给出任何想法吗?
Can anyone give any ideas with examples?
推荐答案
当不再有任何引用变量引用它时,或者当它在孤岛中成为孤儿时.
When there are no longer any reference variables referring to it, OR when it is orphaned in an island.
岛是一个对象,它有一个指向它的引用变量,但是该对象没有指向它的引用变量.
An island being an object that has a reference variable pointing to it, however that object has no reference variables pointing to it.
class A { int i = 5; }
class B { A a = new A(); }
class C {
B b;
public static void main(String args[]) {
C c = new C();
c.b = new B();
// instance of A, B, and C created
c.b = null;
// instance of B and A eligible to be garbage collected.
}
只是想指出,即使 A 的实例有一个引用,它现在在一个岛上,因为 B 的实例没有对它的引用.A 实例符合垃圾回收条件.
Just want to point out that even though the instance of A has a reference, it is on an island now because the instance of B does not have a reference to it. The A instance is eligible for garbage collection.
这篇关于在 Java 中,对象何时变得不可访问?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
本文标题为:在 Java 中,对象何时变得不可访问?


- Eclipse 插件更新错误日志在哪里? 2022-01-01
- Safepoint+stats 日志,输出 JDK12 中没有 vmop 操作 2022-01-01
- 从 finally 块返回时 Java 的奇怪行为 2022-01-01
- 将log4j 1.2配置转换为log4j 2配置 2022-01-01
- Java包名称中单词分隔符的约定是什么? 2022-01-01
- 如何使用WebFilter实现授权头检查 2022-01-01
- value & 是什么意思?0xff 在 Java 中做什么? 2022-01-01
- Spring Boot连接到使用仲裁器运行的MongoDB副本集 2022-01-01
- Jersey REST 客户端:发布多部分数据 2022-01-01
- C++ 和 Java 进程之间的共享内存 2022-01-01