V
Virchanza
I'm just curious about why you can't do the following:
vector<int> vec;
for ( vec::iterator it = vec.begin(); it != vec.end; ++it )
{
}
Would it not be handy to be able to use :: on objects?
vector<int> vec;
for ( vec::iterator it = vec.begin(); it != vec.end; ++it )
{
}
Would it not be handy to be able to use :: on objects?