In some way, the STL made things even worse in C++...
# announcements
c
In some way, the STL made things even worse in C++ by forcing you to know about not just indices but iterators and where they begin and where they end:
Copy code
for(myIntVectorIterator = myIntVector.begin(); 
        myIntVectorIterator != myIntVector.end();
        myIntVectorIterator++)