When does garbage collection work in java?(垃圾收集何时在 Java 中工作?)
问题描述
我知道有很多关于java垃圾收集的文章,但是搜索后我不知道什么时候在java应用程序中运行垃圾收集?(当应用程序重新启动或仍在运行时)".
I knew that there are a lot of articles about java garbage collection but after searching I don't know exactly "when dose the garbage collection run in a java application?(when the application restart or while it still running)".
推荐答案
Garbage Collector
是一个守护线程.一个守护线程在应用程序后面运行.它由JVM启动.这当所有非 dameon 线程停止时,线程停止.
Garbage Collector
is a dameon thread. A dameon thread runs behind the application. It is started by JVM. The
thread stops when all non-dameon threads stop.
JVM 控制垃圾收集器;它决定何时运行垃圾收集器.JVM 运行当垃圾收集器意识到内存不足时.GC的行为可以通过将参数传递给 JVM
进行调整.
The JVM controls the Garbage Collector; it decides when to run the Garbage Collector. JVM runs
the Garbage Collector when it realizes that the memory is running low. The behavior of GC can
be tuned by passing parameters to JVM
.
可以请求垃圾收集从在 java 程序中,但不能保证此请求将由jvm.Check 如何在Java中强制垃圾回收?
One can request the Garbage Collection to happen from within the java program but there is no guarantee that this request will be taken care of by jvm.Check How to force garbage collection in Java?
了解更多..
这篇关于垃圾收集何时在 Java 中工作?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
本文标题为:垃圾收集何时在 Java 中工作?


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