我有一个 2 x 3 的set<set<int> >
名称ss
,如下所示:
5 6 7
6 7 8
我想删除所有6
的 's 并最终像这样:
5 7
7 8
我正在尝试做:
for (set<set<int> >::iterator it = ss.begin(); it != ss.end(); it++) {
it->erase(6);
}
这给了我一个错误:
error: passing ‘const std::set<int>’ as ‘this’ argument of ‘std::set<_Key, _Compare, _Alloc>::size_type std::set<_Key, _Compare, _Alloc>::erase(const key_type&) [with _Key = int, _Compare = std::less<int>, _Alloc = std::allocator<int>, std::set<_Key, _Compare, _Alloc>::size_type = long unsigned int, std::set<_Key, _Compare, _Alloc>::key_type = int]’ discards qualifiers [-fpermissive]
我可以通过传递编译它-fpermissive
,它似乎工作正常,但我想知道这个错误是怎么回事。
在我尝试了海德的建议后编辑:
for (set<set<int> >::iterator it = ss.begin(); it != ss.end(); it++) {
set<int> temp(*it);
temp.erase(6);
ss.erase(*it);
ss.insert(temp);
}
这似乎有效,所以我猜集合不允许像他说的那样改变元素..