std::multimap value_comp() 方法
- C++98 起
// Const version only
value_compare value_comp() const;
返回一个函数对象,该对象通过使用 key_comp()
比较键值对的第一个组件来比较 value_type
(键值对)类型的对象。
参数
(无)
返回值
值比较函数对象。
复杂度
常数 - O(1)。
示例
Main.cpp
#include <cassert>
#include <iostream>
#include <map>
// Example module 97 key compare function
struct ModCmp {
bool operator()(const int lhs, const int rhs) const
{
return (lhs % 97) < (rhs % 97);
}
};
int main()
{
std::multimap<int, char, ModCmp> cont;
cont = { { 1, 'a' }, { 2, 'b' }, { 3, 'c' }, { 4, 'd' }, { 5, 'e' } };
auto comp_func = cont.value_comp();
const std::pair<int, char> val = { 100, 'a' };
for (auto it : cont) {
bool before = comp_func(it, val);
bool after = comp_func(val, it);
std::cout << '(' << it.first << ',' << it.second;
if (!before && !after)
std::cout << ") equivalent to key " << val.first << '\n';
else if (before)
std::cout << ") goes before key " << val.first << '\n';
else if (after)
std::cout << ") goes after key " << val.first << '\n';
else
assert(0); // Cannot happen
}
}
输出
(1,a) goes before key 100
(2,b) goes before key 100
(3,c) equivalent to key 100
(4,d) goes after key 100
(5,e) goes after key 100