Possible Duplicates:
vector erase iterator
Problem with std::map::iterator after calling erase()


I am having a concern about a piece of my code that I have. I have components and an object which stores the components. The problem is during an update the component can tell to remove a component from a the object. But its called from another function.

void Object::update() { //using std::map here
   for(ComponentMap::iterator i = components.begin(); i != components.end(); ++i) {
      (*i).second->update();
   }
}

void HealthComponent::update() {
   if(health <= 0) object->removeComponent("AliveComponent"); //this is wrong logic. but its just an example :D
}

void Object::removeComponent(string component) {

  ComponentMap::iterator i = components.find(component);
  if(i == components.end()) return;

  components.erase(i);

}

and suppose I have lots of components - Health, Alive, Graphics, Physics, Input etc.

I tried something like this (with some test components) and no errors during during update. But I am really concerned. Can it pop me an error in the future? If yes, how to fix it?

Thanks in advance,
Gasim

link|improve this question

57% accept rate
In your example code, it looks as though you'll be erasing an element which is not necessarily the element that Object::update() is currently acting on. That's a much more difficult problem, and probably warrants a rethinking of your design if that is in fact what you want to do. – Michael Burr Jun 26 '11 at 22:02
@karlphillip: it's not a dup of "vector erase iterator", but it's likely a dup of the other question. As I've just discovered, erase on sequences works differently than erase on associative containers. – Ken Bloom Jun 26 '11 at 23:18
feedback

closed as exact duplicate by karlphillip, Bo Persson, Jerry Coffin, iammilind, Graviton Jun 27 '11 at 3:44

This question covers exactly the same ground as earlier questions on this topic; its answers may be merged with another identical question. See the FAQ for guidance on how to improve it.

2 Answers

You cannot loop through your container and say ++i when i is potentially no longer valid (because you erased it). A typical erase loop goes like this:

for (it = x.begin(); it != x.end(); /* nothing here! */)
{
  if (must_erase(*it))
  {
    x.erase(it++); // advance it while still valid, return previous and erase
  }
  else
  {
    ++it;
  }
}

Rewrite your code in this spirit.

To spell out your problem: In Object::update(), you call HealthComponent::update() which invalidates the iterator i, and then you call ++i, which is undefined behaviour.

link|improve this answer
@Ken: Do all versions of erase return the iterator to the next element? Pretty sure set doesn't do it, hence my less-than-elegant syntax. (Though I guess the OP's use of member-find implies it's a std::list.) – Kerrek SB Jun 26 '11 at 21:59
Sorry you're right. The sequences support this syntax (and actually require it), but the associative containers don't support it. The associative containers support find, but the sequence containers don't. For those, one is expected to use the free function std::find. – Ken Bloom Jun 26 '11 at 23:16
@Ken: No worries. I also got confused about find, I confused it with sort (for which list has a special member). As written, the OP appears to be using an associative container. Glad we sorted that out :-) – Kerrek SB Jun 26 '11 at 23:19
I actually like that idea. I am going to kind of send a state that, its erased or something alike. – Gasim Jun 27 '11 at 9:07
std::find is linear complexity because it goes over all the elements. But sets and maps are sorted and balanced binary trees, so the search complexity is logarithmic. Thats why it has its own find function. I don't actually remember where I saw this thing but i have read that for associative trees never use std::find because it has a better function for that. – Gasim Jun 27 '11 at 9:13
show 4 more comments
feedback

In MSVC erase will return the next valid iterator however in GCC it returns void so the only portable way to deal with this issue is keeping the previous iterator, erasing the current element then incrementing the previous iterator for next iteration.

http://www.cplusplus.com/reference/stl/map/erase/

  void Object::removeComponent(string component, ComponentMap::iterator& _prev ) 
  {
     ComponentMap::iterator i = components.find(component);
     if(i == components.end()) 
        return;
     _prev = i;
     --_prev;
     components.erase(i);
     ++prev;
   }
link|improve this answer
Hello. The funny thing is I am using GCC and i get a right output. :/ I'll see what I can do. Thanks. – Gasim Jun 27 '11 at 9:04
feedback

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