我重构了一个使用单个元素列表的类,因此它现在使用此类列表的列表。为了最大限度地减少派生类中的变化,我实现了一个自定义iterator
usingboost::iterator_facade
和一个方法来获取一个boost::iterator_range<iterator>
可用于迭代而不是原始列表的方法。
这似乎工作,除了在一个地方rbegin()
使用。boost::iterator_range
似乎不支持这样的事情。
获取范围的最后一个元素的简单方法是什么?
我正在使用 VS2008 SP1,即 std::tr1 中只有一些 C++11 支持,并且显然也可以使用 boost。
typedef std::deque<MyData> DataList;
class MyClass : private boost::noncopyable
{
public:
void AppendData(DataList* newData
private:
typedef std::deque<DataList*> ListOfDatatLists;
/**
* Custom iterator.
* The content is not meant to be modified so this iterator operates on const lists only.
*/
class iterator
: public boost::iterator_facade <
iterator,
MyData,
boost::forward_traversal_tag // Only forward iteration necessary
>
{
public:
static boost::iterator_range<iterator> range(const ListOfDataLists * pListOfLists);
private:
friend class boost::iterator_core_access;
iterator(const ListOfDataLists * pListOfLists = NULL) : m_pListOfLists(pListOfLists) {}
/// \name Implementations for boost base class
//{@
bool equal(iterator const & other) const;
MyData & dereference() const;
void increment();
difference_type distance_to(const iterator & other) const;
//@}
const ListOfDataLists * m_pListOfLists;
ListOfDataLists::const_iterator m_listIt; ///< The current list of data items
DataList::const_iterator m_dataIt; ///< An iterator of the current list
};
ListOfResultLists m_dataLists;
protected:
typedef std::tr1::shared_ptr<CLockedResults> SpLockedResults;
/// For use by derived classes instead of the former single list
boost::iterator_range<iterator> GetData() const;
};