gpt4 book ai didi

c++ - 设置删除行为很奇怪

转载 作者:搜寻专家 更新时间:2023-10-31 00:15:05 25 4
gpt4 key购买 nike

我刚刚编写了一些基本代码,用于压入一些值,通过使用指向它的迭代器删除一个值(删除)。该集合不包含该值,但迭代器仍指向已删除的值。

这不是违反直觉的吗?为什么会这样?

// erasing from set
#include <iostream>
#include <set>

int main ()
{
std::set<int> myset;
std::set<int>::iterator it;

// insert some values:
for (int i=1; i<10; i++) myset.insert(i*10); // 10 20 30 40 50 60 70 80 90

it = myset.begin();
++it; // "it" points now to 20

myset.erase (it);
std::cout << *it << std::endl; // still prints 20

std::cout << "myset contains:";
for (it=myset.begin(); it!=myset.end(); ++it)
std::cout << ' ' << *it;
std::cout << '\n';
return 0;
}

最佳答案

您有一个无效的集合迭代器。该标准没有规定取消引用无效集合迭代器时发生的情况的规则,因此 behavior is undefined .允许返回 20。允许执行 anything else , 就此而言。

关于c++ - 设置删除行为很奇怪,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/20719937/

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