是否有 C++/CLI 智能指针项目(例如scoped_ptr)?

发布于 2024-10-26 13:47:27 字数 702 浏览 0 评论 0原文

是否有 C++/CLI RAII 智能指针类用于在托管类型中包含本机指针?只是想知道,在我编写自己的 clr_scoped_ptr 值类模板之前。

我知道 Microsoft 提供的:

上面两个与 auto_ptr 类似unique_ptr

但是所有这些都是为了处置托管引用类实例,而不是为了释放本机对象。

Is there a C++/CLI RAII smart pointer class for containment of a native pointer in a managed type? Just wondering, before I go write my own clr_scoped_ptr value class template.

I'm aware of the Microsoft-provided:

The above two are similar to auto_ptr or unique_ptr.

But all these are for disposing managed ref class instances, not for freeing native objects.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(1

冷︶言冷语的世界 2024-11-02 13:47:27

这个看起来相当完整,但我我并不是在寻找所有权的静默转移 ala auto_ptr


我已经在相当宽松的许可下发布了我的版本 codereview.se

This one looks fairly complete, but I'm not looking for silent transfer of ownership ala auto_ptr.


I've posted my version under a rather permissive license over at codereview.se

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