2

何时it是循环的最后一次迭代,在该迭代结束时将抛出此错误。

std::map<std::string,std::shared_ptr<Entity>> entities;
typedef std::map<std::shared_ptr<Entity>,std::vector<std::pair<std::shared_ptr<Entity>,const MTV*>>> colmap;

 

std::map<std::string,std::shared_ptr<Entity>>::iterator it;
for(it = entities.begin();it!=entities.end();++it){
    std::map<std::string,std::shared_ptr<Entity>>::iterator it2;
    for(it2 = entities.begin();it2!=entities.end();++it2){
        MTV* mtv = new MTV(1,sf::Vector2f(1,0));
        collisions[it->second].push_back(std::make_pair(it2->second,mtv));
    }
}
4

1 回答 1

0

迭代器不可能从显示的代码中突然变得不可增加。必须有其他代码导致错误。

于 2012-10-07T10:24:24.797 回答