1

我有 3 个类(“Leader”、“Researchers”、“Workers”),它们都来自基类“Team”。

我有一个类“项目”,其中包含指向不同团队的指针向量。

我在所有类声明中按此顺序使用以下所有标头:

#include <sstream>
#include <boost/archive/text_oarchive.hpp>
#include <boost/archive/text_iarchive.hpp>
#include <boost/serialization/serialization.hpp>
#include <boost/serialization/export.hpp>
#include <boost/serialization/vector.hpp>
#include <boost/serialization/version.hpp>
#include <boost/serialization/split_member.hpp>

要(反)序列化我使用的 Team 对象:

private:
  friend class boost::serialization::access ;

  template <typename Archive>
  void serialize(Archive& ar, const unsigned int /*version*/)
  {
      ar & teamname ;
  }

要(反)序列化我使用的领导者、研究人员、工人对象:

typedef Team _super;

friend class boost::serialization::access ;

template <typename Archive>
void serialize(Archive& ar, const unsigned int /*version*/)
{
    ar & boost::serialization::base_object<_super>(*this) ;
    ar & contactTelephoneNumber ;
}

该项目拥有一个指向不同团队的指针的 std::vector 和一个字符串,使用:

std::vector<Team *> teams ;
std::string note ;

我在 Project 类中使用以下代码进行序列化:

private:
  friend class boost::serialization::access ;

  template <typename Archive>
  void serialize(Archive& ar, const unsigned int /*version*/)
  {
      //ar & BOOST_SERIALIZATION_NVP(teams) ; //ERROR OCCURS HERE
      ar & teams;
      ar & note ;
  }

并在我使用的主要中序列化 Project 对象的向量:

{
    std::ostringstream archiveStream ;
    boost::archive::text_oarchive archive(archiveStream) ;
    archive << BOOST_SERIALIZATION_NVP(projects) ;

    //Get serialized info as string
    archivedProjects = archiveStream.str() ;
}

这一切都编译得很好。问题在于运行时。当达到上述代码部分时,我收到以下错误:

terminate called after throwing an instance of 'boost::archive::archive_exception' 
what(): 
    unregistered class - derevided class not registered or exported"

该计划达到:

ar & teams;

在问卷类的序列化尝试中。

4

1 回答 1

1

正如在 nm 的链接中一样:您需要使用 Boost 注册类,以便在序列化时知道哪些类是什么。

您需要为“Project”序列化的每个类添加以下行:

ar.template register_type<ClassName>() ; //ClassName = Team etc
于 2013-07-16T17:34:34.353 回答