在迭代期间调用set上的erase()

时间:2017-06-24 14:28:22

标签: c++ loops segmentation-fault set mingw

我有以下代码:

#include<bits/stdc++.h>
using namespace std;

int main()
{
    set<string> S;
    S.insert("item1");
    S.insert("item2");
    S.insert("item3");
    S.insert("item4");
    int i=0;
    for (set<string>::iterator it = S.begin(); it != S.end(); it++)
        {
            string temp = *it;
            if (i++%2)
            {
                S.erase(temp); // Causes Seg Fault on next iteration
            }
        }
    cout<<"Items Removed\n";
    return 0;
}

上面的代码试图根据一个简单的条件从集合中删除元素。当使用具有分段错误的mingw-w64(gcc 7.1.0 x86_64-posix-seh-rev0)编译时,它在我的系统上失败。

现在我假设这是因为erase()使当前元素的迭代器无效,从而导致it++失败。但我很困惑,为什么这在我尝试过的所有在线IDE上运行良好(Repl.itIdeOneCodeChefCoilruCpp.sh)。想法?

1 个答案:

答案 0 :(得分:1)

正如您所知,std::set::erase将使擦除元素的迭代器无效。然后代码导致undefined behavior,这意味着一切皆有可能,但没有任何保证;即使它似乎运作良好,但你完全不能依赖它。