vote up 2 vote down star

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?

flag
It doesn't make sense to use an iterator without any reference to the container it's iterating. See James Hopkin's answer. – Mark Ransom Jun 4 at 18:39

5 Answers

vote up 0 vote down

I believe this should generally give you a good test:

if (iterator._Mycont == &MyContainer) { Probably a valid iterator! }

You could do tests to make sure that the iterator does not equal the end...

iterator != MyContainer.end()

and:

iterator >= MyContainer.begin()

link|flag
Seems extremely compiler (and version!) dependent. – Mark Ransom Jun 4 at 18:33
vote up 0 vote down

Hope this help : Is there any way to check if an iterator is valid?

link|flag
vote up 1 vote down

Though the iterators are considered as general form of pointers, they are not exactly the pointers. The standard defines Past-the-end iterator to indicate the search failure in containers. Hence, it is not recommended to check the iterators for NULL

Past-the-end values are nonsingular and nondereferenceable.

if(it != aVector.end())  //past-the-end iterator
    do_something();
link|flag
vote up 0 vote down

Use iterator only in for/while-loops like this for (std::vector::iterator it = v.begin(); it != v.end(); ++it) { do_smth(); }

link|flag
Actually many standard algorithms return iterators (e.g. find) and methods on containers (e.g. map::find) – 1800 INFORMATION May 5 at 10:04
vote up 14 vote down

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.

std::vector<int>::iterator i = std::find(v.begin(), v.end(), 13);
if (i != v.end())
{
     // ...
}

The only thing you can do with an unassigned iterator is assign a value to it.

link|flag
You covered the case when the iterator is initialized and still valid. However, some operations on some containers may invalidate the iterators. For example, removal of elements from a vector may invalidate iterators ( the iterator pointing to the last element in the vector in this case). – Cătălin Pitiș May 5 at 10:55
1  
@Cătălin: that's all true, but out of the scope of the question, I think. Just as the ! (not) operator will only work with valid or null pointers, the above will only work with valid iterators (including end iterators). – James Hopkin May 5 at 11:12

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.