用于删除对的 Erase-Remove_if 惯用语
当尝试使用 Erase-remove_if 惯用语从 std::vector> 出现了一个特殊的问题。尽管要删除的目标对的 .first 值为 4,但初始实现留下了重复的对:
stopPoints.erase(std::remove_if(stopPoints.begin(), stopPoints.end(), [&](const stopPointPair stopPoint)-> bool { return stopPoint.first == 4; }));
问题的根源在于擦除过程不彻底。 std::erase_if 仅将匹配元素移至向量末尾;它不会删除它们。要完成删除,正确的做法是使用 std::remove_if 返回的迭代器作为擦除的起点:
stopPoints.erase(std::remove_if(stopPoints.begin(), stopPoints.end(), [](const stopPointPair stopPoint)-> bool { return stopPoint.first == 4; }), stopPoints.end());
理解 Erase-Remove_if 机制:
有关进一步的见解,请参阅有关 [Erase-Remove Idiom](https://en.wikipedia.org/ wiki/Erase-remove_idiom).
免责声明: 提供的所有资源部分来自互联网,如果有侵犯您的版权或其他权益,请说明详细缘由并提供版权或权益证明然后发到邮箱:[email protected] 我们会第一时间内为您处理。
Copyright© 2022 湘ICP备2022001581号-3