为什么 C# 垃圾收集器不调用 FileStream 析构函数来释放本机文件句柄

c# 具有 FileStream 类并包装 OS 文件句柄。FileStream 具有析构函数,考虑我们从 FileStream 获取实例并忘记它,如果没有任何引用,GC 必须调用它的析构函数并释放 OS 文件句柄,那么为什么它不会发生,直到我自己调用它的处置或应用程序终止?



慕标5832272
浏览 81回答 2
2回答

MMTTMM

FileStream 实现了 IDisposable,这意味着您必须调用 Dispose。请参阅上一个问题我需要处置 FileStream 对象吗?MS自己告诉你这个https://learn.microsoft.com/en-us/dotnet/api/system.io.filestream?view=netframework-4.7.2最简单的方法是使用“使用”语句&nbsp; &nbsp; using (FileStream fs = File.Create(path))&nbsp; &nbsp; {&nbsp; &nbsp; &nbsp; &nbsp; AddText(fs, "This is some text");&nbsp; &nbsp; &nbsp; &nbsp; AddText(fs, "This is some more text,");&nbsp; &nbsp; &nbsp; &nbsp; AddText(fs, "\r\nand this is on a new line");&nbsp; &nbsp; &nbsp; &nbsp; AddText(fs, "\r\n\r\nThe following is a subset of characters:\r\n");&nbsp; &nbsp; &nbsp; &nbsp; for (int i=1;i < 120;i++)&nbsp; &nbsp; &nbsp; &nbsp; {&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; AddText(fs, Convert.ToChar(i).ToString());&nbsp; &nbsp; &nbsp; &nbsp; }&nbsp; &nbsp; }

不负相思意

如评论中所述,每当 GC 开始收集时,它都会释放无法访问的对象。然而,为了避免性能问题,GC 在这些条件之一发生之前不会启动。最好不要等待垃圾收集器和我们自己快速处置我们的非托管资源。
打开App,查看更多内容
随时随地看视频慕课网APP