Update Java 虚拟机.md

增加标记-整理算法的优缺点分析
This commit is contained in:
Dwade3 2019-03-24 10:54:38 +08:00 committed by GitHub
parent 695989ba03
commit 7c941a540c
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -240,6 +240,14 @@ obj = null;
让所有存活的对象都向一端移动,然后直接清理掉端边界以外的内存。
优点:
- 不会产生内存碎片
不足:
- 在标记-清除的基础上还需进行对象的移动,成本相对较高
### 3. 复制
<div align="center"> <img src="https://gitee.com/CyC2018/CS-Notes/raw/master/docs/pics/4_2001550547640585.png"/> </div><br>