How can boost::serialization be used with std::shared_ptr from C++11?(boost::serialization 如何与 C++11 中的 std::shared_ptr 一起使用?)
问题描述
我知道有一个Boost模块序列化的boost::shared_ptr
,但我找不到任何东西对于 std::shared_ptr
.
另外,我不知道如何轻松实现它.恐怕下面的代码
Also, I don't know how to implement it easily. I'm afraid that the following code
namespace boost{namespace serialization{
template<class Archive, class T>
inline void serialize(Archive & ar, std::shared_ptr<T> &t, const unsigned int version)
{
if(Archive::is_loading::value) {T*r;ar>>r;t=r;}
else {ar<<t.get();}
}
}}//namespaces
不起作用.事实上,如果某个对象被多次引用,它将在第一次运行 ar>>r
时加载,然后只复制一个指针.然而,我们会创建多个指向它的 shared_ptr
对象,因此会多次破坏它.
doesn't work. Indeed, if some object was referred multiple times, it would be loaded with first run of ar>>r
, and after that just a pointer will be copied. However we would create multiple shared_ptr
objects pointing to it, and therefore would destruct it more than one time.
对此有什么想法吗?
关于我正在使用的系统的一些技术细节:
Some technical details about the system I'm using:
- 操作系统:Ubuntu 11.10 (x64)
- 编译器:g++ (Ubuntu/Linaro 4.6.1-9ubuntu3) 4.6.1
- boost 版本:1.46.1(使用
sudo apt-get install libboost-dev
安装)
推荐答案
从 Boost 1.56 开始,序列化库有 对 std::shared_ptr 的内置支持.如果您可以使用该库的更新版本,则无需实现自己的序列化辅助函数.
As of Boost 1.56, the serialization library has built-in support for std::shared_ptr. You do not need to implement your own serialization helper functions if you can use a more recent version of the library.
这篇关于boost::serialization 如何与 C++11 中的 std::shared_ptr 一起使用?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
本文标题为:boost::serialization 如何与 C++11 中的 std::shared_ptr 一起使用?
基础教程推荐
- 如何在不破坏 vtbl 的情况下做相当于 memset(this, ...) 的操作? 2022-01-01
- 在 C++ 中循环遍历所有 Lua 全局变量 2021-01-01
- Windows Media Foundation 录制音频 2021-01-01
- 如何使图像调整大小以在 Qt 中缩放? 2021-01-01
- 管理共享内存应该分配多少内存?(助推) 2022-12-07
- 为 C/C++ 中的项目的 makefile 生成依赖项 2022-01-01
- 使用从字符串中提取的参数调用函数 2022-01-01
- 从 std::cin 读取密码 2021-01-01
- 为什么语句不能出现在命名空间范围内? 2021-01-01
- 如何“在 Finder 中显示"或“在资源管理器中显 2021-01-01