Why am I getting quot;vector iterators incompatiblequot;?(为什么我得到“向量迭代器不兼容?)
问题描述
为什么这个代码
#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()
不是插入点之前".
这篇关于为什么我得到“向量迭代器不兼容"?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
本文标题为:为什么我得到“向量迭代器不兼容"?


基础教程推荐
- 这个宏可以转换成函数吗? 2022-01-01
- 如何通过C程序打开命令提示符Cmd 2022-12-09
- 如何将 std::pair 的排序 std::list 转换为 std::map 2022-01-01
- 如何检查GTK+3.0中的小部件类型? 2022-11-30
- 常量变量在标题中不起作用 2021-01-01
- C++结构和函数声明。为什么它不能编译? 2022-11-07
- 静态库、静态链接动态库和动态链接动态库的 .lib 文件里面是什么? 2021-01-01
- 在 C++ 中计算滚动/移动平均值 2021-01-01
- 我有静态或动态 boost 库吗? 2021-01-01
- 如何在 C++ 中初始化静态常量成员? 2022-01-01