我读了很多关于垃圾收集的东西,比如它的生成、范围等,但想知道垃圾收集什么时候被触发?如果可能的话,一个例子会很有帮助.
I read many things about garbage collection like it's generation, scope etc but want to know when does the garbage collection gets triggered ? an example will be really helpful if possible.
谢谢,
当下列条件之一为真时发生垃圾回收:
Garbage collection occurs when one of the following conditions is true:
GC.Collect
方法.在几乎所有情况下,您都不必调用此方法,因为垃圾收集器会持续运行.此方法主要用于特殊情况和测试.GC.Collect
method is called. In almost all cases, you do not have to call this method, because the garbage collector runs continuously. This method is primarily used for unique situations and testing.来源:https://msdn.microsoft.com/en-us/library/ee787088%28v=vs.110%29.aspx#conditions_for_a_garbage_collection
这篇关于垃圾收集何时在 C# 中触发?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持跟版网!