【Java 虚拟机原理】垃圾回收算法 ( 设置 JVM 命令参数输出 GC 日志 | GC 日志输出示例 | GC 日志分析 )
文章目錄
- 一、設置 JVM 命令參數輸出 GC 日志
- 二、GC 日志示例
- 三、GC 日志分析
一、設置 JVM 命令參數輸出 GC 日志
在 IntelliJ IDEA 的啟動參數中設置
-XX:+PrintGCDetailsJava 虛擬機參數 , 當運行 Java 程序時 , 會在控制臺打印 GC 回收相關信息 ;
其它的 Java 虛擬機常用命令參數參考 : https://blog.csdn.net/yangwei234/article/details/82977716
選擇 IntelliJ IDEA 中 , 運行程序 下拉菜單 中的 " Edit Configurations… " 選項 ;
在 VM options 輸入框中 , 輸入 -XX:+PrintGCDetails 選項 , 這是給 Java 虛擬機設置的參數 ;
二、GC 日志示例
運行如下代碼 :
public class Main {public static void main(String[] args) {Main main = new Main();main = null;System.gc();} }命令行輸出的 GC 日志 :
[GC (System.gc()) [PSYoungGen: 7895K->744K(153088K)] 7895K->752K(502784K), 0.0125267 secs] [Times: user=0.00 sys=0.00, real=0.03 secs] [Full GC (System.gc()) [PSYoungGen: 744K->0K(153088K)] [ParOldGen: 8K->593K(349696K)] 752K->593K(502784K), [Metaspace: 3012K->3012K(1056768K)], 0.0039947 secs] [Times: user=0.00 sys=0.00, real=0.00 secs] HeapPSYoungGen total 153088K, used 3947K [0x0000000715b80000, 0x0000000720600000, 0x00000007c0000000)eden space 131584K, 3% used [0x0000000715b80000,0x0000000715f5af98,0x000000071dc00000)from space 21504K, 0% used [0x000000071dc00000,0x000000071dc00000,0x000000071f100000)to space 21504K, 0% used [0x000000071f100000,0x000000071f100000,0x0000000720600000)ParOldGen total 349696K, used 593K [0x00000005c1200000, 0x00000005d6780000, 0x0000000715b80000)object space 349696K, 0% used [0x00000005c1200000,0x00000005c1294520,0x00000005d6780000)Metaspace used 3042K, capacity 4496K, committed 4864K, reserved 1056768Kclass space used 330K, capacity 388K, committed 512K, reserved 1048576K三、GC 日志分析
[GC (System.gc()) [PSYoungGen: 7895K->744K(153088K)] 7895K->752K(502784K), 0.0125267 secs] [Times: user=0.00 sys=0.00, real=0.03 secs]
GC (System.gc()) :
GC (System.gc()) 表示是開發者手動調用了 System.gc() 方法 ;
[PSYoungGen: 7895K->744K(153088K)] :
PSYoungGen , 其中 PS 是 Parallel Seavenge 垃圾回收器 , YoungGen 是年輕代 ;
7895K->744K 表示垃圾回收 , 從占用 7895K 內存 , 變為占用 744K 內存 ;
153088K 表示年輕代 內存大小 ;
[Times: user=0.00 sys=0.00, real=0.03 secs] :
Times 表示本次垃圾回收基本耗時 ;
[Full GC (System.gc()) [PSYoungGen: 744K->0K(153088K)] [ParOldGen: 8K->593K(349696K)] 752K->593K(502784K), [Metaspace: 3012K->3012K(1056768K)], 0.0039947 secs] [Times: user=0.00 sys=0.00, real=0.00 secs]
[ParOldGen: 8K->593K(349696K)] :
Par 表示 Parallel 垃圾回收器 , OldGen 表示老年代 ;
[Times: user=0.00 sys=0.00, real=0.00 secs] :
Times 表示本次垃圾回收基本耗時 ;
PSYoungGen total 153088K, used 3947K [0x0000000715b80000, 0x0000000720600000, 0x00000007c0000000)eden space 131584K, 3% used [0x0000000715b80000,0x0000000715f5af98,0x000000071dc00000)from space 21504K, 0% used [0x000000071dc00000,0x000000071dc00000,0x000000071f100000)to space 21504K, 0% used [0x000000071f100000,0x000000071f100000,0x0000000720600000)
第 111 行 PSYoungGen total 153088K, used 3947K [0x0000000715b80000, 0x0000000720600000, 0x00000007c0000000) 表示年輕代內存空間總大小 , 使用了多少 ;
第 222 行 eden space 131584K, 3% used [0x0000000715b80000,0x0000000715f5af98,0x000000071dc00000) 表示 Eden 區大小 , 以及使用情況 ;
第 333 行 from space 21504K, 0% used [0x000000071dc00000,0x000000071dc00000,0x000000071f100000) 表示 From 區大小 , 以及使用情況 ;
第 444 行 to space 21504K, 0% used [0x000000071f100000,0x000000071f100000,0x0000000720600000) 表示 To 區大小 , 以及使用情況 ;
ParOldGen total 349696K, used 593K [0x00000005c1200000, 0x00000005d6780000, 0x0000000715b80000)object space 349696K, 0% used [0x00000005c1200000,0x00000005c1294520,0x00000005d6780000)
老年代區域的內存大小 , 及使用情況 ;
總結
以上是生活随笔為你收集整理的【Java 虚拟机原理】垃圾回收算法 ( 设置 JVM 命令参数输出 GC 日志 | GC 日志输出示例 | GC 日志分析 )的全部內容,希望文章能夠幫你解決所遇到的問題。
- 上一篇: 【Java 虚拟机原理】垃圾回收算法 (
- 下一篇: 【Java 虚拟机原理】垃圾回收算法(