博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
为什么在进行Full GC之前最好进行一次Minor GC
阅读量:4974 次
发布时间:2019-06-12

本文共 600 字,大约阅读时间需要 2 分钟。

摘自:《Java Performance》第三章

为什么在进行Full GC之前最好进行一次Minor GC?

Garbage collecting the young generation space prior to garbage collecting the old generation space usually results in less work for the garbage collector and more objects being garbage collected since objects in the old generation space may be holding object references to objects in the young generation space. If the young generation space is not garbage collected, any object in old generation space that holds a reference to an object in young generation space cannot be garbage collected.

转载于:https://www.cnblogs.com/jubincn/p/3381095.html

你可能感兴趣的文章
移动互联网的新要求
查看>>
.net excel 导入 导出
查看>>
函数------迭代器、生成器、面向过程的编程思想
查看>>
查看jar包的JDK版本
查看>>
PHP实现选择排序的方法
查看>>
《生活的哲学》
查看>>
bbb u-boot SPI 启动
查看>>
I am back-电商网站开发&jQuery
查看>>
Python 下载图片的几种方法
查看>>
iphone label相关的圆角处理(转)
查看>>
eclipse导入myeclipse的web项目没法识别问题解决方法
查看>>
java中读取特殊文件的类型
查看>>
多外观网站解决方案讨论
查看>>
hdu 1054 Strategic Game (二分匹配)
查看>>
delphi SetWindowPos改变窗体位置和状态
查看>>
数学:快速幂取模
查看>>
缓存雪崩
查看>>
HDU 4252 A Famous City(单调栈)
查看>>
在thinkphp中js文件添加路径
查看>>
[转载]判断APP的版本,提醒升级
查看>>