So basically what I want to do is to have a pure virtual method returning an iterator to an arbitrary collection of a concrete type, e.g in pseudo code:
virtual Iterator<T> getIterator() const = 0;
The user of this class actually don't care what implementation the child class uses. It could be a set, vector, list, array etc.
I'm aware of the std::iterator
class but I cant find a way to specify it correctly in order to work with a simple vector.
virtual std::iterator<std::random_access_iterator_tag,T> getIterator() const = 0;
myVector.begin() // compilation error in implementation
defining std::iterator
with const T
as type parameter hasn't worked too. I also tried leaving T
and instead defining the pointer and reference types as const T*
and const T&
.
By taking a look at the std::vector
implementation, I found out that std::vector::const_iterator
actually derives from _Iterator012
deriving from _Iterator_base
.
It really bugs me that there isn't any way to work with arbitrary collections in std.
Implementing my classes as templates like in <algorithm>
is not an option for me due two reasons:
- No control over the actual value type
- I simply don't want to make my classes templates complicating my design a lot and making things less flexible.
The used type parameter T
was just for demonstration, actually this is a concrete type.