序列化嵌套无序映射
我有一个带有声明的变量,看起来
boost::unordered_map< std::string, boost::unordered_map <long,int>, hashe::fnv_1a> _pl;
我需要将其序列化到文件中,然后再进行反序列化。我应该只做一个嵌套循环还是可以用 boost::serialization 做一些超酷的事情?任何帮助我了解嵌套声明的帮助将不胜感激。
提前致谢!
I've got a variable with a declaration that looks like
boost::unordered_map< std::string, boost::unordered_map <long,int>, hashe::fnv_1a> _pl;
I need to serialise this to a file and and deserialise later. Should I just do a nested loop or can i do something ultracool with boost::serialisation? Any help pointing me towards nested declarations would be greatly appreciated.
Thanks in advance!
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您必须定义每种类型的序列化模板函数。 Boost 序列化可以轻松地对向量和地图实现。只需为每种类型定义序列化函数即可。
如需更多帮助,请参阅一些示例:
Boost 序列化示例
You have to define template function of serialization of each type. Boost serialization can be easily implemented for vectors and maps. Simply define serialize function for each type.
For more help see some examples:
Boost Serialization Example