generational garbage collection的意思|示意

美 / / 英 / /

分代垃圾收集


generational garbage collection的网络常见释义

垃圾收集 垃圾收 集器使用一种称为通用垃圾收集(Generational Garbage Collection)的技术优化垃圾收集过程。 通用垃圾收集假定关于应用应用程序的以下情况为真: * 新对象有比旧对象短的寿命 * 新对象的内存可以比...

垃圾回收 最近又提出了一个大大减少延迟的方法, 称为生育的垃圾回收 (generational garbage collection), 它将一个永久的存储区域添加到前一段描述的回收方案中。

关联存储碎片收集 关联存储碎片收集(generational garbage collection)的工作方式如下:许多存储器区域被指定为存放新产生对象的特殊场所。

分代收集 ... 标记-清扫(mark & sweep) 节点复制(Copying Garbage Collection) 分代收集(Generational Garbage Collection) ...

generational garbage collection相关短语

1、 Precise generational garbage collection 分代垃圾收集

2、 Generational Concurrent Garbage Collection 分代并发式垃圾收集

generational garbage collection相关例句

SUN's JVM 1.3.1 USES a generational garbage collection algorithm.

SUN的JVM 1.3.1使用分代垃圾收集算法。

Introduced with JVM v1.3 for all operating system platforms is the concept of generational garbage collection.

针对所有操作系统平台的生成的垃圾收集(generational garbage collection)概念在JVM V1.3中被引入。

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.

一般来说,启用生成的垃圾收集将使积极创建许多临时对象并运行有大量用户的大容量应用程序受益。

One of the advantages of generational collection is that it can make garbage collection pauses shorter by not collecting all generations at once.

分代收集的一个优点是它不同时收集所有的代,因此可以使垃圾收集暂停更短。

A generational collector is free to use a different collection strategy for different generations and perform garbage collection on the generations separately.

分代收集器对不同的代可以自由使用不同的收集策略,对各代分别进行垃圾收集。