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

删除list中指针的三种方法

时间:2014-10-30 01:42:05      阅读:207      评论:0      收藏:0      [点我收藏+]

标签:style   ar   for   sp   bs   amp   line   as   tt   

第一种方法:

std::list<Entity *> children;
for(auto&& child : children) {
  delete child;
}
children.clear(); 

第二种方法:

std::list<Entity *> children;
for(auto itr = children.begin(); itr != children.end(); ++itr)
{
    Entity* child = *itr;
    delete child;
}

第三种方法:

std::list<Entity *> children;
for(Entity *ptr : children) {
    delete ptr;
}
children.clear();
 
 
 

删除list中指针的三种方法

标签:style   ar   for   sp   bs   amp   line   as   tt   

原文地址:http://www.cnblogs.com/learnopencad/p/4060949.html

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