2

我想将哈希映射序列化为文件并稍后对其进行反序列化。

#include <boost/serialization/hash_map.hpp>
#include <boost/filesystem/fstream.hpp>
#include <hash_map>

class A: virtual public B {
 public:
     friend class boost::serialization::access;
     stdext::hash_map<std::string, myClass> myClassHashTable; 
     template <class Archive>
     void serialize(Archive &ar, const unsigned int version)
     {
        ar & myClassHashTable;
     }
};

void A::serializedToDisk()
{
      boost::filesystem::path finalPath(SOME_CONSTANT);
      // code to create  boost::filesystem::ifstream ofs object
      boost::archive::text_oarchive oa(ofs);
      oa << myClassHashTable;
}
void A::restoreFromDisk()
{
     boost::filesystem::path finalPath(SOME_CONSTANT);
    // code to create  boost::filesystem::ifstream ifs object
      boost::archive::text_iarchive ia(ifs);
      ia >> myClassHashTable;
}

但我收到一个错误,因为 -

错误 C2039:“序列化”:不是“stdext::hash_map<_Kty,_Ty>”的成员

我在网上搜索了这个错误,但没有得到太多帮助。另外,我检查了我的 boost 安装serialization/hash_map.hpp确实有一个serialize()功能。相同的代码适用于std::deque. 谁能告诉我应该如何更改它以使其编译?

4

1 回答 1

4
于 2011-02-23T07:44:34.520 回答