Garbage Collector GC的意思|示意
垃圾收集器
Garbage Collector GC的网络常见释义
垃圾收集器 CLR 中的一个构件是垃圾收集器(Garbage Collector GC)。当你用C语言声明了一些新的变量(有关C中的变量声明,将在下一节介绍),这些变量就被纳入垃圾收集器的管理之下。
Garbage Collector GC相关例句
The structure and arithmetic of the Pretreatment module and GC(Garbage Collector) module are discussed. The strategy of the Optimization of Code are provided.
研究了预处理模块、垃圾回收模块的结构与算法及代码优化的策略;
Those objects can be allocated directly on the stack (which is faster) and do not enter the heap or require inspection or removal by the normal garbage collector (which reduces GC).
这样,我们就可以直接在栈上为这些对象开辟内存空间(这么做更快),无需使用堆,也不必使用常规的GC手段进行对象检测与移除了(这么做会降低GC的次数,进而提升效率)。
When I introduced the JIT, I had to write code to allow the garbage collector to stop all threads in the system so it could safely GC.
在刚引入JIT的时候,为了确保GC操作的安全,我不得不编写代码,让垃圾回收器停止(VM)系统内的所有线程。
This way, the garbage collector will obtain more breathing space, decreasing the probability of a full GC.
通过这种方式,垃圾收集器将获得更多空间并减少完全GC的可能性。
Gc, is typically the first place developers go to try to figure out if the JVM garbage collector is acting up and causing poor performance.
开发人员尝试寻找是否J VM垃圾收集器发生故障或者导致性能低下,通常首先要做的就是执行gc。
What happens at JVM or memory level when we say object is collected by Garbage Collector or GC?
在JVM或记忆水平时,我们说的对象被垃圾收集器收集或GC会发生什么?