如何在托管 C++ 中处置 IDisposable?
我正在尝试在托管 C++ (.NET 2.0) 中处理 IDisposable 对象(FileStream^ fs) 并收到错误
Dispose':不是“System::IO::FileStream”的成员
它表示我应该调用析构函数。 调用会
fs->~FileStream();
调用FileStream对象上的dispose方法吗? 为什么我不能调用 Dispose?
I'm trying to Dispose of an IDisposable object(FileStream^ fs) in managed C++ (.NET 2.0) and am getting the error
Dispose' : is not a member of 'System::IO::FileStream
It says that I should invoke the destructor instead. Will calling
fs->~FileStream();
call the dispose method on the FileStream object? Why can't I call Dispose?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
正确的模式是仅删除对象:
这将转换为对 Dispose() 的调用。
请参阅这篇文章了解所发生情况的一些详细信息在引擎盖下。 这个习惯用法的优点是它允许您编写:
并正确调用 Dispose 方法...相当于 C# 中的 using 块。 文件流对象仍然分配在托管堆上。
The correct pattern is to just delete the object:
This will be translated into a call to Dispose().
See this post for some of the details of what is going on under the hood. The advantage of this idiom is that it allows you to write:
And have the Dispose method called correctly ... equivalent to a using block in C#. The file stream object is still allocated on the managed heap.