CLR 如何进行内存管理
从 到 很多天,我都在寻找一份详细文档,它将帮助我理解 CLR 完成的垃圾收集,并提供一些代码行的示例,包括一些函数、类、值类型和引用类型。如果有具体的文档可以逐步说明,请分享。
From To Many days I am searching for a detail document which will help me to understand garbage collection done by CLR with example of some lines of coding including some functions,class, value type and reference type. Please share with if there is certain document which shows it step by step.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(5)
看一下:
我还可以推荐 Jeffrey Richter 的书C# via CLR
Have a look at:
I can also recommand Jeffrey Richter's book C# via CLR
关于它的一篇好文章: http://www.codeproject.com/KB/dotnet /内存-Misconceptions.aspx
A nice article about it : http://www.codeproject.com/KB/dotnet/Memory-Misconceptions.aspx
您可能可以在 MSDN 上找到最好的资源,可能如下:
http://msdn .microsoft.com/en-us/library/ms973837.aspx
(本文已过时)
http://msdn.microsoft.com/en-us/magazine/bb985010.aspx
You could probably find the best ressources on MSDN, maybe the following:
http://msdn.microsoft.com/en-us/library/ms973837.aspx
(this article is old)
http://msdn.microsoft.com/en-us/magazine/bb985010.aspx
如果您想了解垃圾收集的更一般主题,请看一下这本书 垃圾集合:自动动态内存管理算法。
If you want to get into the more general topic of garbage collection take a look at the book Garbage Collection: Algorithms for Automatic Dynamic Memory Management.
该视频似乎很热门并且主题:E2E:Erik Meijer 和 Patrick Dussud - 垃圾收集内部
This video seems to be hot and on topic: E2E: Erik Meijer and Patrick Dussud - Inside Garbage Collection