来自 this 的侵入性指针
如何将 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
当使用
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.