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

bug of vetor

时间:2015-02-01 17:52:58      阅读:161      评论:0      收藏:0      [点我收藏+]

标签:c++ vector

#include <vector>
int main(){
//    freopen("in","r",stdin);
    vector<int>  a;
    a.clear();
    a.push_back(1);
    for(vector<int>::iterator it = a.begin();it!=a.end();++it){
        if(*it<100) a.push_back(*it*2);
    }
}
 The code will make segmentation fault , I think It‘s the designer‘s fault

bug of vetor

标签:c++ vector

原文地址:http://blog.csdn.net/u011495472/article/details/43372211

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