假设我正在使用 boost 将地图序列化为 XML 存档。地图的类型为 std::map< long, CMyObject >。我意识到我需要改用这种类型:std::map< std::string, CMyObject >。在这种情况下,我将如何处理向后兼容性?这是我的序列化方法现在的样子:
template<class Archive>
void serialize(Archive & ar, const unsigned int file_version)
{
ar & BOOST_SERIALIZATION_NVP(m_MyMap);
}
void serialize ( std::ostream &out ) const
{
boost::archive::xml_oarchive oa ( out );
oa << boost::serialization::make_nvp ( "MyArchive.xml", *this );
}
void serialize ( std::istream &in )
{
boost::archive::xml_iarchive ia ( in );
ia >> boost::serialization::make_nvp ( "MyArchive.xml", *this );
}
m_MyMap 当前是 std::map< long, CMyObject > 类型,但需要更改为 std::map< std::string, CMyObject >。处理这个最干净的方法是什么?