Possible Duplicate:
C++ Best way to check if an iterator is valid
I want to do something like this:
std::vector<int>::iterator it;
// /cut/ search for something in vector and point iterator at it.
if(!it) //check whether found
do_something();
But there is no operator! for iterators. How can I check whether iterator points at anything?
Best Solution
You can't. The usual idiom is to use the container's end iterator as a 'not found' marker. This is what
std::find
returns.The only thing you can do with an unassigned iterator is assign a value to it.