C++11
这已在 C++11 中修复(或擦除已改进/在所有容器类型中保持一致)。
擦除方法现在返回下一个迭代器。
auto pm_it = port_map.begin();
while(pm_it != port_map.end())
{
if (pm_it->second == delete_this_id)
{
pm_it = port_map.erase(pm_it);
}
else
{
++pm_it;
}
}
C++03
擦除地图中的元素不会使任何迭代器失效。
(除了被删除元素的迭代器)
实际上插入或删除不会使任何迭代器无效:
另请参阅此答案:
Mark Ransom Technique
但是您确实需要更新您的代码:
在您的代码中,您在调用擦除后增加 pm_it。此时为时已晚,已经失效。
map<string, SerialdMsg::SerialFunction_t>::iterator pm_it = port_map.begin();
while(pm_it != port_map.end())
{
if (pm_it->second == delete_this_id)
{
port_map.erase(pm_it++); // Use iterator.
// Note the post increment.
// Increments the iterator but returns the
// original value for use by erase
}
else
{
++pm_it; // Can use pre-increment in this case
// To make sure you have the efficient version
}
}