
gc
denverj
这个作者很懒,什么都没留下…
展开
-
JVM学习笔记-引用计数收集器(Reference Counting Collectors)
Reference Counting Collectors Reference counting was an early garbage collection strategy. In this approach, a reference count is maintained for each object on the heap. When an object is...原创 2011-11-22 15:46:51 · 201 阅读 · 0 评论 -
JVM学习笔记-跟踪收集器(Tracing Collectors)
Tracing CollectorsTracing garbage collectors trace out the graph of object references starting with the root nodes. Objects that are encountered during the trace are marked in some way. M...原创 2011-11-22 16:04:34 · 294 阅读 · 0 评论 -
JVM学习笔记-压缩收集器(Compacting Collectors)
Compacting CollectorsGarbage collectors of Java Virtual Machines will likely have a strategy to combat heap fragmentation. Two strategies commonly used by mark and sweep collectors are co...原创 2011-11-22 16:17:17 · 159 阅读 · 0 评论 -
JVM学习笔记-拷贝收集器(Copying Collectors)
Copying CollectorsCopying garbage collectors move all live objects to a new area. As the objects are moved to the new area, they are placed side by side, thus eliminating any free space t...原创 2011-11-22 16:34:56 · 246 阅读 · 0 评论 -
JVM学习笔记-分代收集器(Generational Collectors)
Generational CollectorsOne disadvantage of simple stop and copy collectors is that all live objects must be copied at every collection. This facet of copying algorithms can be improved up...原创 2011-11-23 14:41:53 · 171 阅读 · 0 评论