generational garbage collector的意思|示意
分代垃圾收集器
generational garbage collector的网络常见释义
比较完善 例 如,一个比较完善(generational garbage collector)的垃圾回收器(如HotSpot 的虚拟机),most of the objects are allocated in the young generation,从eden 内存池中产生。
垃圾回收器 分代的垃圾回收器(Generational Garbage Collector),最近被分配内存空间的对象被放在0代,因为很小,足以放到二级缓存(L2),所以可以快速存取。
generational garbage collector相关例句
A generational garbage collector divides the heap into multiple generations; most JVMs use two generations, a "young" and an "old" generation.
分代垃圾收集器把堆分成多代;多数JVM使用两代,“年轻代”和“年老代”。
A generational collector is free to use a different collection strategy for different generations and perform garbage collection on the generations separately.
分代收集器对不同的代可以自由使用不同的收集策略,对各代分别进行垃圾收集。