I would like to clarify more on the "(*beg).second;"
I guess this is the confusing part, since beg is treated as a pointer but it was not declared as such. More over, it might not be clear where the "second" came from, since it is not declared in the iterator class.
What we need to realize is that beg is just a normal object of type iterator for which the * operator has been overridden. So, when you do "*beg", this is calling a method, not trying to use a pointer.
Now, the * operator implementation in the iterator class returns the current element, just like a pointer, and that's why the * operator is used, to make it more obvious, though it might be confusing at first.
For example, look at the declaration of an iterator in the .h file:
template <class BidirectionalIterator, class T, __DFL_TMPL_PARAM(Reference, T& ),
__DFL_TYPE_PARAM(Distance, ptrdiff_t)>
# endif
class reverse_bidirectional_iterator {
typedef reverse_bidirectional_iterator<BidirectionalIterator, T, Reference__,
Distance> self;
friend inline bool operator==(const self& x, const self& y);
protected:
BidirectionalIterator current;
public:
typedef bidirectional_iterator_tag iterator_category;
typedef T value_type;
typedef Distance difference_type;
# if defined (__STL_MSVC50_COMPATIBILITY)
typedef Pointer pointer;
# else
typedef T* pointer;
# endif
typedef Reference reference;
reverse_bidirectional_iterator() {}
explicit reverse_bidirectional_iterator(const BidirectionalIterator& x)
: current(x) {}
BidirectionalIterator base() const { return current; }
Reference operator*() const {
BidirectionalIterator tmp = current;
return *--tmp;
}
Note the declaration of the * operator at the end.
So the * is returning a map element. A map element is always of type " struct pair ", which has a "second" element declared. Again, just check the pair's .h file:
template <class T1, class T2>
struct pair {
typedef T1 first_type;
typedef T2 second_type;
T1 first;
T2 second;
...
So, a call to ( *beg ).second is executing the * operator of the iterator for a map, A map is a series of "pairs", and a pair is a struct that has first and second elements. In this case we are getting the indexed element "second", which, in this case, is a vector.
In the other hand the following & is a regular reference, so you get a reference to the vector, not a copy, so you can change the value in the map.
I hope that made sense.
-Alejandro