gpt4 book ai didi

c++ - std::map::erase(const key_type&) 比较自定义后停止工作

转载 作者:太空宇宙 更新时间:2023-11-04 16:20:29 27 4
gpt4 key购买 nike

我在 std::map 中自定义比较,如下所示。

class my_cmp {
public:
bool operator()(const string &a, const string &b) {
return (a.length() >= b.length());
}
};

map<string, int, tmp_cmp> tmp;适用于按字符串长度排序的所有键。但是tmp.erase("a string");不再有效。是否有解决方案使 std::map::erase(key_type) 在自定义比较后仍然有效?

最佳答案

自定义比较器 std::map必须具有与“less”运算符相同的行为。因此,您必须将代码更改为类似 return (a.length() < b.length()); 的代码

关于c++ - std::map::erase(const key_type&) 比较自定义后停止工作,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/17328097/

27 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com