When does garbage collection get triggered in C#?(垃圾收集何时在 C# 中触发?)
问题描述
我读了很多关于垃圾收集的东西,比如它的生成、范围等,但想知道垃圾收集什么时候被触发?如果可能的话,一个例子会很有帮助.
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
方法.在几乎所有情况下,您都不必调用此方法,因为垃圾收集器会持续运行.此方法主要用于特殊情况和测试.
- The system has low physical memory.
- The memory that is used by allocated objects on the managed heap surpasses an acceptable threshold. This threshold is continuously adjusted as the process runs.
- The
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# 中触发?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
本文标题为:垃圾收集何时在 C# 中触发?


基础教程推荐
- 有没有办法忽略 2GB 文件上传的 maxRequestLength 限制? 2022-01-01
- 为什么Flurl.Http DownloadFileAsync/Http客户端GetAsync需要 2022-09-30
- 将 XML 转换为通用列表 2022-01-01
- MS Visual Studio .NET 的替代品 2022-01-01
- 将 Office 安装到 Windows 容器 (servercore:ltsc2019) 失败,错误代码为 17002 2022-01-01
- 如何在 IDE 中获取 Xamarin Studio C# 输出? 2022-01-01
- SSE 浮点算术是否可重现? 2022-01-01
- c# Math.Sqrt 实现 2022-01-01
- rabbitmq 的 REST API 2022-01-01
- 如何激活MC67中的红灯 2022-01-01