如何在托管 C++ 中处置 IDisposable?

发布于 2024-07-11 02:04:00 字数 276 浏览 6 评论 0原文

我正在尝试在托管 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

眼中杀气 2024-07-18 02:04:00

正确的模式是仅删除对象:

delete fs;

这将转换为对 Dispose() 的调用。

请参阅这篇文章了解所发生情况的一些详细信息在引擎盖下。 这个习惯用法的优点是它允许您编写:

{
  FileStream fs(...)
  ...
}

并正确调用 Dispose 方法...相当于 C# 中的 using 块。 文件流对象仍然分配在托管堆上。

The correct pattern is to just delete the object:

delete fs;

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:

{
  FileStream fs(...)
  ...
}

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.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文