我正在尝试使用boost的功能来序列化指向基元的指针(这样我就不必去引用并自己做一个深度存储)。但是,当我尝试这样做时,我遇到了一堆错误。下面是一个类的简单示例,该类应该包含save
和load
方法,这些方法可以从文件中读取和读取类内容。该程序无法编译:
#include <boost/archive/text_iarchive.hpp>
#include <boost/archive/text_oarchive.hpp>
#include <boost/serialization/shared_ptr.hpp>
#include <boost/shared_ptr.hpp>
#include <fstream>
class A
{
public:
boost::shared_ptr<int> sp;
int const * p;
int const& get() {return *p;}
void A::Save(char * const filename);
static A * const Load(char * const filename);
//////////////////////////////////
// Boost Serialization:
//
private:
friend class boost::serialization::access;
template<class Archive>
void serialize(Archive & ar,const unsigned int file_version)
{
ar & p & v;
}
};
// save the world to a file:
void A::Save(char * const filename)
{
// create and open a character archive for output
std::ofstream ofs(filename);
// save data to archive
{
boost::archive::text_oarchive oa(ofs);
// write the pointer to file
oa << this;
}
}
// load world from file
A * const A::Load(char * const filename)
{
A * a;
// create and open an archive for input
std::ifstream ifs(filename);
boost::archive::text_iarchive ia(ifs);
// read class pointer from archive
ia >> a;
return a;
}
int main()
{
}
请注意,我不对取消引用指针的解决方案感兴趣;我希望boost为我处理(许多这些类可能指向相同的底层对象)。
答案 0 :(得分:3)
在http://www.boost.org/doc/libs/1_54_0/libs/serialization/doc/index.html中:
默认情况下,数据类型由Implementation Level指定原语 从未跟踪类序列化特征。如果需要跟踪 一个共享的原始对象通过一个指针(例如一个长期用作 引用计数),它应该包含在类/结构中,以便它 可识别的类型。改变实施的替代方案 long的级别会影响整个程序中序列化的所有long - 可能不是人们想要的。
因此:
struct Wrapped {
int value;
private:
friend class boost::serialization::access;
template<class Archive>
void serialize(Archive & ar,const unsigned int file_version)
{
ar & value;
}
};
boost::shared_ptr<Wrapped> sp;
Wrapped const * p;