关于cocos2dx 中 std::vector中删除某个元素的认识

前端之家收集整理的这篇文章主要介绍了关于cocos2dx 中 std::vector中删除某个元素的认识前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
//_robot是一个std::vector的数组,定义为std::vector<Robot *> _robot
//Robot是我自己定义的一个类
//首先要先取出_robot中的robot在哪里,得到a
auto a = std::find(_robots.begin(),_robots.end(),robot);
//然后再移除robot
removeChild(robot);
//最后从_robot中删除a这个位置
_robots.erase(a);

但是在迭代器中使用这种方法会报错,经人指点,学习到另一种方法!@H_502_13@

//如果金币容器不为0则遍历容器内的node
	if (goldArmature.size()!=0)
	{
		for (int i = 0; i < goldArmature.size();i++)
		{
			//得到所取出的gold的当前X Y坐标
			auto x = goldArmature.at(i)->getPositionX();
			auto y = goldArmature.at(i)->getPositionY();
			//如果金币飞出屏幕的把金币存入另一个容器goldOutRange中
			if (x< -goldArmature.at(i)->getContentSize().width / 2 || x>visibleSize.width + goldArmature.at(i)->getContentSize().width / 2 ||
				y<-goldArmature.at(i)->getContentSize().height / 2 || y>visibleSize.height + goldArmature.at(i)->getContentSize().height / 2)
			{
				removeChild(goldArmature.at(i));
				goldArmature.erase(i);
			}
		}
	}
这样就可以删除其中的某一项了! 原文链接:https://www.f2er.com/cocos2dx/344798.html

猜你在找的Cocos2d-x相关文章