***************************************转载请注明出处:http://blog.csdn.net/lttree******************************************
使用 cocos2d-x 中的 Vector的时候,
Vector<Bullet*>* bullets; // 遍历每个bullet,让他们自己更新 for ( auto it = bullets->begin();it!=bullets->end();it++) { (*it)->update(); // 获取子弹生命,若子弹已经消亡,释放 if( (*it)->getLife() ) { Bubblet* b = *it; bubblets->eraSEObject(b); this->removeChild( b,true ); } }
就会发生错误——vector iterators incompatible;
或许是我 打开的方式不对,于是用C++11方法:
Vector<Bullet*> bullets; for( auto& b : bullets ) { b->update(); if( b->getLife() ) { bubblets.eraSEObject(b); this->removeChild(b,true); } }
还是不行。。。
找了很久,发现,
据说是因为,迭代器遍历的时候,如果把当前的给删除了,那么后面就乱套了,无法继续进行下去了,
所以,会崩溃。
于是乎,如果通过迭代器来遍历,就这么改:
// 遍历每个bullet,让他们自己更新 for ( auto it = bullets->begin();it!=bullets->end();) { (*it)->update(); // 获取子弹生命,若子弹已经消亡,释放 if( (*it)->getLife() ) { Bubblet* b = *it; it = bubblets->eraSEObject(b); this->removeChild( b,true ); } else { it++; } }
迭代器的移动,不再靠循环,而是靠判断语句。
可惜,通过C++11方法的遍历,我还没想到要怎么改。。。
******************************************
原文链接:https://www.f2er.com/cocos2dx/342151.html