0

我有以下功能。

void BulletFactory::update(Uint32 ticks) {
  std::list<Sprite*>::iterator it = activeBullets.begin();
  while (it != activeBullets.end()) {
    (*it)->update(ticks);
    if(!((*it)->inView())) {
      activeBullets.remove(*it);
      Sprite* temp = *it;
      it++;
      inactiveBullets.push_back(temp);
    } else {
      it++;
    }
  }
}

当条件!((*it)->inView())存在时,true存在分段错误。我看不到问题所在。

编辑:忘了提到 activeBullets 和 inactiveBullets 是两个列表。

4

2 回答 2

6
 activeBullets.remove(*it);
 Sprite* temp = *it; //<--- problem
 it++; //<-- problem

应该:

  Sprite* temp = *it;
  it = activeBullets.erase(it); //use erase
  //it++; don't increment it
于 2012-11-15T20:05:41.483 回答
1

您不能修改迭代器指向的元素,因为它会使迭代器无效。请参阅此问题以获取解决方案。

于 2012-11-15T20:05:46.100 回答