来自 this 的侵入性指针

发布于 2024-11-04 04:20:19 字数 110 浏览 0 评论 0原文

如何将 this 指针传递给需要 intrusive_ptr 的方法(例如来自 boost 的方法)?对于shared_ptrs,有enable_shared_from_this

How can a this pointer be passed to a method that expects intrusive_ptr (such as the one from boost)? For shared_ptrs there is enable_shared_from_this.

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

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

发布评论

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

评论(1

如痴如狂 2024-11-11 04:20:19

当使用intrusive_ptr时,类本身负责处理其引用计数。所以传递一个指向自身的指针很容易!

它所要做的就是增加自己的引用计数器并传递this。完毕。

When using intrusive_ptr the class itself is responsible for handling its reference counts. So passing a pointer to itself is easy!

All it has to do is increment its own reference counter and pass this. Done.

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