如何抑制boost serialization :: archive中的额外信息?

时间:2018-04-03 23:36:13

标签: c++ serialization boost

在Boost序列化代码示例中 bus schedule 在其输出文件“demofile.txt”中,第一行是:

"22 serialization::archive 16 0 0 6 0 0 0 0 0 6 24 4"
这是什么? Dll版本号?我们可以抑制它并仅存储自己的数据吗?

1 个答案:

答案 0 :(得分:1)

这不是Dll版本。这是档案标题。

使用归档标记来抑制它:

void save_schedule(const bus_schedule &s, const char * filename){
    // make an archive
    std::ofstream ofs(filename);
    boost::archive::text_oarchive oa(ofs, boost::archive::archive_flags::no_header);
    oa << s;
}

当然,还记得在恢复时做同样的事情!

void restore_schedule(bus_schedule &s, const char * filename) {
    // open the archive
    std::ifstream ifs(filename);
    boost::archive::text_iarchive ia(ifs, boost::archive::archive_flags::no_header);

    // restore the schedule from the archive
    ia >> s;
}

另见