我有四个类,其中两个是迭代器:
LinkedList<T> -- holds the pointer to dummy node
LinkedListNode<T> -- Node with next and previous pointers and data T
LinkedListIterator<T> -- holds a pointer to LinkedListNode
LinkedListConstIterator<T> -- holds a pointer to LinkedListNode
他们都只需要实现前向迭代器功能。
在这种情况下,我的const迭代器中的函数会有什么不同?它只是意味着当我向用户返回一个指针或任何东西时,我应该使它成为const?
答案 0 :(得分:0)
看看const_iterators
如何适用于任何STL容器(例如:std::list)。如果你正在寻找你的迭代器类以类似的方式工作,那么你应该返回对const值的引用,即const T&