本文介绍了为什么我得到“向量迭代器不兼容"?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着跟版网的小编来一起学习吧!
问题描述
为什么这个代码
#include <algorithm>
#include <iterator>
#include <vector>
int main()
{
std::vector<int> v;
v.push_back(1);
v.push_back(2);
v.push_back(3);
v.reserve(v.size() * 2); // Reserve enough space to keep iterators valid
std::copy(v.begin(), v.end(), std::back_inserter(v));
return 0;
}
给我调试断言失败,表达式:向量迭代器不兼容(Visual C++ 2008)?
give me the debug assertion failure, Expression: vector iterators incompatible (Visual C++ 2008)?
推荐答案
只有当向量必须重新分配时,对应于元素的迭代器才会失效,reserve 避免了这种情况.
Iterators corresponding to elements are only invalidated when the vector has to be reallocated, which reserve avoids.
然而,v.end() 不会保持有效.
However, v.end() won't stay valid.
标准对push_back 和insert 的描述保证
The Standard's description of push_back and insert guarantees that
如果新容量大于旧容量,则导致重新分配.如果没有重新分配发生,插入点之前的所有迭代器和引用都保持有效.
Causes reallocation if the new size is greater than the old capacity. If no reallocation happens, all the iterators and references before the insertion point remain valid.
v.end() 不是插入点之前".
这篇关于为什么我得到“向量迭代器不兼容"?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持跟版网!
The End


大气响应式网络建站服务公司织梦模板
高端大气html5设计公司网站源码
织梦dede网页模板下载素材销售下载站平台(带会员中心带筛选)
财税代理公司注册代理记账网站织梦模板(带手机端)
成人高考自考在职研究生教育机构网站源码(带手机端)
高端HTML5响应式企业集团通用类网站织梦模板(自适应手机端)