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
}
}
std::remove_if
不适用于std:map