4,分代收集(Generational Collection): 当前商业虚拟机的垃圾收集都采用这种算法,它并没有什么新的思想,只是根据对象的存活周期的不同将内存划分为几块。
基于42个网页-相关网页
从J2SE 1.2开始,虚拟机就引入了多种使用 分代回收 ( generational collection )的不同垃圾回收算法。与朴素的垃圾回收会检查堆中的每个存活对象不同,分代垃圾回收采用很多观测到经验特征,来最小化回收无用...
基于32个网页-相关网页
分代收集算法(Generational Collection):将对象存活周期的不同将内存分为几块,根据各个年代的特点采用最适当的收集算法。当前商业虚拟机都采用此算法。
基于22个网页-相关网页
generational garbage collection 垃圾收集 ; 垃圾回收 ; 关联存储碎片收集 ; 分代收集
One of the advantages of generational collection is that it can make garbage collection pauses shorter by not collecting all generations at once.
分代收集的一个优点是它不同时收集所有的代,因此可以使垃圾收集暂停更短。
Generational garbage collection turns out to be very effective, although it introduces several additional bookkeeping requirements at runtime.
分代收集证明是非常高效的,尽管在运行时它需要更多的簿记。
High volume applications that actively create many temporary objects and run with a high number of users generally benefit from having generational garbage collection turned on.
一般来说,启用生成的垃圾收集将使积极创建许多临时对象并运行有大量用户的大容量应用程序受益。
应用推荐