c++ - 为什么我得到 "vector iterators incompatible"?

标签 c++ visual-studio-2008 visual-c++ vector iterator

为什么这段代码

#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;
}

给我调试断言失败,表达式: vector 迭代器不兼容(Visual C++ 2008)?

最佳答案

对应于元素的迭代器仅在必须重新分配 vector 时才会失效,reserve 避免了这种情况。

但是,v.end() 不会保持有效。

标准对push_backinsert 的描述保证

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() 不是“插入点之前”。

关于c++ - 为什么我得到 "vector iterators incompatible"?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/15855634/

相关文章:

visual-studio - 何时需要向 MSBuild 传递解决方案文件?

visual-studio - Microsoft Visual Studio : opendir() and readdir(), 怎么办?

c++ - 使用 For 循环构建 map

visual-studio - Visual Studio 2008 引用太长?

c++ - GetObject - GetObjectA 链接器错误

c# - SQL Server 通信协议(protocol)问题

有条件地包含适用于 Windows Mobile 的代码

c++ - 在 C++ 中使用 SDL 的简单声波发生器

c++ - 如何使用 ncurses 获取 UTF-8 重音

c++ - 哪些指针值可以很好地计算?