Skip to content

Commit 8ebba00

Browse files
authored
Update memory-area.md
1 parent 9561dd3 commit 8ebba00

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

docs/java/jvm/memory-area.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -270,7 +270,7 @@ Java 对象的创建过程我建议最好是能默写出来,并且要掌握每
270270
271271
- 指针碰撞 :
272272
- 适用场合 :堆内存规整(即没有内存碎片)的情况下。
273-
- 原理 :过的内存全部整合到一边,没有用过的内存放在另一边,中间有一个分界指针,只需要向着没用过的内存方向将该指针移动对象内存大小位置即可。
273+
- 原理 :用过的内存全部整合到一边,没有用过的内存放在另一边,中间有一个分界指针,只需要向着没用过的内存方向将该指针移动对象内存大小位置即可。
274274
- 使用该分配方式的 GC 收集器:Serial, ParNew
275275
- 空闲列表 :
276276
- 适用场合 : 堆内存不规整的情况下。

0 commit comments

Comments
 (0)