First page Back Continue Last page Graphics
ITERATORS (cont.)
TWO TYPES
container-type::const_iterator
- Allows us to access (read) the values of the container only, not change them.
container-type::iterator
- Allows us to access (read) the values of the container as well as change (write) them.