假设我有这样的事情:
class Collection
{
private:
typedef std::vector< std::shared_ptr<Something> >::iterator Iterator;
std::vector< std::shared_ptr<Something> > data_;
public:
Iterator begin() {return data_.begin()}
Iterator end() {return data_.end()}
}
当我使用Collection::Iterator
实例时,我需要取消引用它一次,以获取std::shared_ptr<Something>
对象并再次获取Something
对象。
但是如果我只想做std::shared_ptr<Something>
一个实现细节,那么在一次取消引用之后,我应该得到一个Something
对象是合理的。
那是:
Collection collection;
Collection::Iterator it = collection.begin();
Something firstMember = *it; // instead of the current **it;
我的问题是,我是否需要Collection
从头开始将 Iterator 作为嵌套类,并从这里http://www.cplusplus.com/reference/std/iterator/实现随机访问迭代器所需的所有功能,或者在那里一些众所周知的方法?可能是 C++11?