我用这种方式定义了地图:
map<unsigned int, map<unsigned int, std::shared_ptr<MyObject>>> map;
使用一些键和空地图(内部地图)预先初始化第一张地图。
我有一段用这张地图操作的代码:
for(auto mapElement : map){
//cout << "1) " << mapElement.second.size() << endl;
if(mapElement.second.size()>0){
// do something
}
mapElement.second.clear();
cout << "2) " << mapElement.second.size() << endl;
}
for(auto mapElement : overwrittenMsgs){
cout << "3) " << mapElement.second.size() << endl;
}
这是一次迭代的可能输出:
1) 2
2) 0
1) 1
2) 0
3) 2
3) 1
所以似乎clear()
并没有真正发挥作用。
我可以将mapElement.second.clear();
替换为map.at(mapElement.first).clear();
来解决问题。
这种行为的原因是什么?
答案 0 :(得分:10)
它'因为你用副本循环。更改循环以使用引用:
for(auto& mapElement : map){ ... }