garbage collection algorithm meaning in Chinese
不用单元收集算法
无用单元收集算法, 废料收集方法
Examples
- Because garbage collection algorithms vary , some algorithms analyze older , longer - lived objects less frequently than short - lived objects
由于各种垃圾收集算法有所不同,某些算法会更频繁地分析生存期较短的对象,而不是较老、生存期较长的对象。 - Many garbage collection algorithms require dividing the heap into separate memory spaces , some of which may be inaccessible to the user program at certain times
许多垃圾收集算法需要将堆分割成独立的内存空间,其中一些空间在某些时刻对用户程序是不可访问的。 - The problem faced by all garbage collection algorithms is the same - identify blocks of memory that have been dispensed by the allocator , but are unreachable by the user program
所有垃圾收集算法所面临的问题是相同的找出由分配器分配的,但是用户程序不可到达的内存块。 - Some garbage collection algorithms require significant cooperation from the compiler or runtime environment , such as updating reference counts whenever a pointer assignment is performed
一些垃圾收集算法要求编译器或者运行时环境的重要配合,如当进行指针分配时更新引用计数。 - The runtime s garbage collection algorithm is based on several generalizations that the computer software industry has discovered to be true by experimenting with garbage collection schemes
运行时的垃圾回收算法基于以下几个普遍原理,这些垃圾回收方案的原理已在计算机软件业通过实验得到了证实。