简体   繁体   English

如何使用boost :: serialization将带有对象向量的对象序列化为属性

[英]How to serialize object with vector of objects as attribute using boost::serialization

I'm trying to create base of objects, which contains as attribute vector of object from different class. 我正在尝试创建对象库,其中包含来自不同类的对象的属性矢量。 Here's my code: 这是我的代码:

    #include <iostream>
    #include <string>
    #include <vector>
    #include <fstream>
    #include <boost/archive/binary_oarchive.hpp>
    #include <boost/archive/binary_iarchive.hpp>

    using namespace std;

    class form_mesto
    {
    public:
        string mesto;
        int year;
        int mounth;
        int day;
        bool visit = false;
        form_mesto(string a_mesto)
        {
            mesto = a_mesto;
        }
    };

    class Place
    {
    private:
        friend class boost::serialization::access;
        template<class Archieve>
        void serialize(Archieve&ar, const unsigned int version)
        {
            ar& mestа;
            ar& person;
        }
    public:
        string person;
        vector<form_mesto> mestа;

        Place(string a_person)
        {
            person = a_person;
        }

        void add_place(form_mesto a_mesto)
        {
            mestа.push_back(a_mesto);
        }
    };

int main()
{
    string input_in_form = "London";
    string input_in_Place = "Eugene";
    form_mesto z = form_mesto(input_in_form);
    Place x = Place(input_in_Place);
    x.add_place(z);
    std::ofstream ofs("save.dat", std::ios::binary);
    boost::archive::binary_oarchive oa(ofs);
    oa<<x;
};

Error, which i get is: 错误,我得到的是:

c:\\boost_1_57_0\\boost\\serialization\\access.hpp(118): error C2039: serialize: is not a member of "std::vector>". c:\\ boost_1_57_0 \\ boost \\ serialization \\ access.hpp(118):错误C2039:serialize:不是“ std :: vector>”的成员。

Can somebody share experience of how to serialize that type of objects? 有人可以分享如何序列化此类对象的经验吗?

To make the code compilable, one has to do the following: 要使代码可编译,必须执行以下操作:

  1. to include the header responsible for vector serialization 包括负责向量序列化的头

     #include <boost/serialization/vector.hpp> 
  2. to add the serialize method to the form_mesto class serialize方法添加到form_mesto

     class form_mesto { private: friend class boost::serialization::access; template<class Archieve> void serialize(Archieve&ar, const unsigned int version) { // ... } // ... }; 

Here is the compilable code. 是可编译的代码。

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM