Conversion from boost::shared_ptr to std::shared_ptr?(从 boost::shared_ptr 到 std::shared_ptr 的转换?)
问题描述
我有一个库,它在内部使用 Boost 的 shared_ptr
版本,并且只公开那些.对于我的应用程序,我想尽可能使用 std::shared_ptr
.遗憾的是,这两种类型之间没有直接转换,因为引用计数的内容取决于实现.
I got a library that internally uses Boost's version of shared_ptr
and exposes only those. For my application, I'd like to use std::shared_ptr
whenever possible though. Sadly, there is no direct conversion between the two types, as the ref counting stuff is implementation dependent.
有没有办法让 boost::shared_ptr
和 std::shared_ptr
共享同一个引用计数对象?或者至少从 Boost 版本中窃取 ref-count 而只让 stdlib 版本来处理它?</p>
Is there any way to have both a boost::shared_ptr
and a std::shared_ptr
share the same ref-count-object? Or at least steal the ref-count from the Boost version and only let the stdlib version take care of it?
推荐答案
您可以通过使用析构函数携带引用来将 boost::shared_ptr 内部"携带到 std::shared_ptr 中:
You can carry the boost::shared_ptr "inside" the std::shared_ptr by using the destructor to carry the reference around:
template<typename T>
void do_release(typename boost::shared_ptr<T> const&, T*)
{
}
template<typename T>
typename std::shared_ptr<T> to_std(typename boost::shared_ptr<T> const& p)
{
return
std::shared_ptr<T>(
p.get(),
boost::bind(&do_release<T>, p, _1));
}
这样做的唯一真正原因是,如果您有一堆需要 std::shared_ptr<T>
的代码.
The only real reason to do this is if you have a bunch of code that expects std::shared_ptr<T>
.
这篇关于从 boost::shared_ptr 到 std::shared_ptr 的转换?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
本文标题为:从 boost::shared_ptr 到 std::shared_ptr 的转换?
基础教程推荐
- 在 C++ 中循环遍历所有 Lua 全局变量 2021-01-01
- Windows Media Foundation 录制音频 2021-01-01
- 管理共享内存应该分配多少内存?(助推) 2022-12-07
- 如何“在 Finder 中显示"或“在资源管理器中显 2021-01-01
- 使用从字符串中提取的参数调用函数 2022-01-01
- 为什么语句不能出现在命名空间范围内? 2021-01-01
- 为 C/C++ 中的项目的 makefile 生成依赖项 2022-01-01
- 从 std::cin 读取密码 2021-01-01
- 如何使图像调整大小以在 Qt 中缩放? 2021-01-01
- 如何在不破坏 vtbl 的情况下做相当于 memset(this, ...) 的操作? 2022-01-01