vote up 1 vote down star

Currently I'm trying to erase a sequence of iterators from a set, however GCC's standard library seems to be broken because std::set::erase(iterator) should return the an iterator (next iterator), however in GCC it returns void (which is standard?)

Anyways I want to write:

myIter = mySet.erase(myIter);

But GCC doesn't like it... So Is it safe to write this instead?

mySet.erase(myIter++);

Thanks!

Edit: And yes I'm checking against mySet.end();

flag

2 Answers

vote up 9 vote down check

There is no problem with

mySet.erase(myIter++);

The order of operation is well-defined: myIter is copied into myTempIter, myIter is incremented, and myTempIter is then given to the erase method.

For Greg and Mark: no, there is no way operator++ can perform operations after the call to erase. By definition, erase() is called after operator++ has returned.

link|flag
What you say is true only because the operator++ has been redefined by the classes. For PODs, the operator is actually called after the line! – PierreBdR Oct 2 '08 at 8:05
Yes, it is an interesting remark. And the whole point is that the order of operations is irrelevant for POD types, since incrementation is always well-defined. Well you can always imagine strange cases where the method has some access to a reference to the POD-variable, but that is not recommended. – Camille Oct 2 '08 at 8:32
vote up 3 vote down

First, reread the standard and you'll see that the prototype of the set::erase method is:

void erase(iterator position);

However, the associative containers in the STL are "stable", as erasing an element do not affect the iterators on the other elements. This means that the following line is valid:

iterator to_erase = myIter++;
mySet.erase(to_erase);
// Now myIter is still on the next element
link|flag
Special thanks for remembering about the fact that sets don't have random access iterators! – Robert Gould Oct 2 '08 at 8:25

Your Answer

Get an OpenID
or

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