本文介绍了如何在 Java 中强制进行垃圾收集?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
是否可以在 Java 中强制进行垃圾回收,即使这很棘手?我知道 System.gc();
和 Runtime.gc();
但他们只建议做 GC.如何强制 GC?
Is it possible to force garbage collection in Java, even if it is tricky to do? I know about System.gc();
and Runtime.gc();
but they only suggest to do GC. How can I force GC?
推荐答案
最好的选择是调用 System.gc()
这只是对垃圾收集器的提示,您希望它进行收集.尽管垃圾收集器是不确定的,但没有办法强制立即收集.
Your best option is to call System.gc()
which simply is a hint to the garbage collector that you want it to do a collection. There is no way to force and immediate collection though as the garbage collector is non-deterministic.
这篇关于如何在 Java 中强制进行垃圾收集?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
本站部分内容来源互联网,如果有图片或者内容侵犯您的权益请联系我们删除!