for(I=antiviral_data.begin();I<antiviral_data.end();I++){ if((*I)->x>maxx) { antiviral_data.erase(I); }}
并运行该程序,我得到没有错误,直到x大于maxx并且我使用.erase(),此时我收到此错误:
DeBUG Assertion Failed!
Program: …My documents\O.exe file:
…include\vector line: 116Expression:
(“this->_Has_container()”,0)For information on how your program
can cause an assertion failure,see
the Visual C++ documentation on
asserts.(Press Retry to deBUG the application)
[Abort][Retry][Ignore]
另外,如果我尝试使用cout:
cout<<(*antiviral_data.begin())->x<<endl;
我收到此错误:
DeBUG Assertion Failed!
Program: …My documents\O.exe file:
…include\vector line: 98Expression: vector iterator not
deferencableFor information on how your program
can cause an assertion failure,see
the Visual C++ documentation on
asserts.(Press Retry to deBUG the application)
[Abort][Retry][Ignore]
有人可以告诉我为什么我不能使用向量中的任何数据,以及如何解决它?
另外:antiviral_data是指针的向量,只有一个元素:
antiviral_data.push_back(new aX1(player.x,player.y,'>'));
如果这有帮助.
解决方法 你得到断言的最可能的原因是你在擦除后增加了我.试试这个:for(I=antiviral_data.begin();I!=antiviral_data.end();){ if((*I)->x>maxx) I=antiviral_data.erase(I); else ++I;}
另请参见http://www.cppreference.com/wiki/stl/vector/erase,在该页面上搜索无效迭代器.
总结以上是内存溢出为你收集整理的c – 为什么我的矢量代码断言?无论如何,断言是什么?全部内容,希望文章能够帮你解决c – 为什么我的矢量代码断言?无论如何,断言是什么?所遇到的程序开发问题。
如果觉得内存溢出网站内容还不错,欢迎将内存溢出网站推荐给程序员好友。
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)