gpt4 book ai didi

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

转载 作者:可可西里 更新时间:2023-11-01 15:09:08 26 4
gpt4 key购买 nike

为什么这段代码

#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/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com