码迷,mamicode.com
首页 > 其他好文 > 详细

删除map容器中指定的元素

时间:2016-10-29 18:42:29      阅读:178      评论:0      收藏:0      [点我收藏+]

标签:time   int   orb   指定   r++   cond   删除   opera   ras   

for (std::map<Int64,Int64>::iterator iter = ips_forbidden_.begin(); iter != ips_forbidden_.end();)
{
  if (cur_time >= iter->second)
  {

  ips_forbidden_.erase(iter++);
  }
  else
  {
    ++iter;
  }
}

iter++返回当前的元素,而operator(int)内部已经对iter进行了+1操作,使iter指向下一个元素,这样iter就继续有效了

删除map容器中指定的元素

标签:time   int   orb   指定   r++   cond   删除   opera   ras   

原文地址:http://www.cnblogs.com/tomcao/p/6011446.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!