0

我将多个数据加载到boost::archive::text_oarchive中,现在我需要提取数据。但是因为档案包含多条记录,我需要一个迭代器。

就像是

//input archive
boost::archive::text_iarchive iarch(ifs);

//read until the end of file
while (!iarch.eof()){

//read current value
iarch >> temp;
...//do something with temp

}

是否有任何标准方法来迭代存档的元素?我发现 only iarchive.iterator_type,但它是我需要的吗?我该如何使用它?

4

1 回答 1

0

您正在查看的迭代器类型实际上来自

class shared_ptr_helper {
    ...
    typedef std::set<
        boost::shared_ptr<const void>,
        collection_type_compare
    > collection_type;
    typedef collection_type::const_iterator iterator_type;

我认为它是在加载存档期间使用的,而不是作为外部使用的迭代器。

如果您查看 tutorial -> STL Collection 下的链接http://www.boost.org/doc/libs/1_53_0/libs/serialization/doc/index.html,您将看到以下示例:

#include <boost/serialization/list.hpp>

class bus_route
{
    friend class boost::serialization::access;
    std::list<bus_stop *> stops;
    template<class Archive>
    void serialize(Archive & ar, const unsigned int version)
    {
        ar & stops;
    }
public:
    bus_route(){}
};

如果这不是您所需要的,那么您可能需要查看覆盖加载并按照http://www.boost.org/doc/libs/1_53_0/libs/serialization/doc/tutorial.html#splitting 并根据需要添加处理。

于 2013-03-25T14:53:37.960 回答