C ++从/到文件</int,int>序列化/反序列化std :: map <int,int>

时间:2013-04-18 06:28:20

标签: c++ serialization map

我有一个std :: map。

我想知道我是否可以使用fwrite将其写入文件(也可以从文件中读取),如果我需要单独写/读每个值。

我希望,因为没有什么特别的,这可能是可能的。

2 个答案:

答案 0 :(得分:26)

使用boost::serialization在一行中进行序列化。 标题:

boost/serialization/map.hpp

代码示例

#include <map>
#include <sstream>
#includ  <iostream>
#include <boost/serialization/map.hpp>
#include <boost/archive/text_iarchive.hpp>
#include <boost/archive/text_oarchive.hpp>

int main()
{
   std::map<int, int> map = {{1,2}, {2,1}};
   std::stringstream ss;
   boost::archive::text_oarchive oarch(ss);
   oarch << map;
   std::map<int, int> new_map;
   boost::archive::text_iarchive iarch(ss);
   iarch >> new_map;
   std::cout << (map == new_map) << std::endl;
}

输出:

g++ -o new new.cpp -std=c++0x -lboost_serialization
./new
1

for file只使用std::ifstream/std::ofstream代替std::stringstream,可能是binary_archive,而不是text_archive

答案 1 :(得分:1)

没有用于序列化地图的单行程序。您需要单独编写每个键/值对。不过,这确实比for循环复杂得多。

使用boost,可能有办法,但我不熟悉确切的API。