
jvm
huimin618
j2ee
展开
-
jvm内存区域&工具&笔记
转摘 https://www.cnblogs.com/czwbig/p/11127124.html https://github.com/hollischuang/toBeTopJavaer java8来自网络 java8之前 image.png 1、程序计数器 程序计数器(Program Counter Register)是一块较小的内存空间,它可以看作是当前线程所执行的字节码的行号指示器。 为了线程切换后能恢复到正确的执行位置,每条线程都需要有一个独立的程序计数器,各条线.原创 2020-10-12 10:33:26 · 126 阅读 · 0 评论 -
G1垃圾收集器笔记
参考: https://blog.youkuaiyun.com/CrankZ/article/details/86009279 https://hllvm-group.iteye.com/group/topic/44381#post-272188 https://hllvm-group.iteye.com/group/topic/44381?page=2 https://hllvm-group.iteye.com/group/topic/21468#post-272070 1、G1收集器 G1(Garbage - F原创 2020-07-26 17:55:51 · 1533 阅读 · 0 评论 -
jvm垃圾收集器
参考: https://blog.youkuaiyun.com/CrankZ/article/details/86009279 1、Serial收集器 JDK1.3.1前是HotSpot新生代收集的唯一选择; Serial收集器依然是虚拟机运行在Client模式下的默认新生代收集器。 -XX:+UseSerialGC:串联收集器 2、ParNew收集器 ParNew收集器就是Serial收集器的多线程版本,它也是一个新生代收集器。 除了Serial收集器外,目前只有它能和CMS收集器(Concurrent Ma原创 2020-07-19 21:05:28 · 189 阅读 · 0 评论