garbage collection algorithm meaning in Chinese
不用单元收集算法
无用单元收集算法, 废料收集方法
Examples
- In addition to the copying and mark - compact collectors used by default , the 1 . 4 . 1 jdk also contains four other garbage collection algorithms , each of which is suited to a different purpose
除了默认情况下使用的复制收集器和标记-整理收集器, jdk 1 . 4 . 1还包含其他四种垃圾收集算法,每一种适用于不同的目的。 - Usually , the tuning requirements we see that are related to memory involve reducing garbage collection overhead , ideally by tuning the heap sizes and garbage collection algorithms , and where that fails , reducing object churn using various techniques
通常,我们看到的和内存有关的调优要求都涉及到降低垃圾收集的开销,理想情况下可以通过调整堆的大小或者改变垃圾收集算法来解决,如果不行的话,还可以采用各种技术减少内存中的对象。 - Because most garbage collection algorithms stop the world for some period of time , a single - threaded garbage collector can quickly become a scalability bottleneck , because all but one processor are idle while the garbage collector has suspended the user program threads
因为大多数垃圾收集算法会在一段时间里使系统停止,单线程的收集器很快会成为伸缩性瓶颈,因为在垃圾收集器将用户程序线程挂起时,除了一个处理器之外,其他的处理器都是空闲的。