iterator

Started by
0 comments, last by SiCrane 18 years, 8 months ago
Is an iterator the same as a pointer?
Advertisement
No. Though a pointer is a kind of iterator. Iterators are a generalization of the pointer concept that allow C++ programs to access data structures of diiffernt types in a uniform manner.

This topic is closed to new replies.

Advertisement