std::flat_set<Key,Compare,KeyContainer>::value_comp
来自cppreference.com
std::flat_set::value_compare value_comp() const; |
(C++23 起) | |
返回比较值的函数对象。它与 key_comp 相同。
参数
(无)
返回值
比较值的函数对象。
复杂度
常数。
示例
{{cpp/container/if set|flat_set |
运行此代码
#include <iostream> #include <flat_set> #include <utility> // 演示模 97 的键比较函数 struct ModCmp { bool operator()(int lhs, int rhs) const { return (lhs % 97) < (rhs % 97); } }; int main() { std::flat_set<int, char, ModCmp> cont; cont = {{1, 'a'}, {2, 'b'}, {3, 'c'}, {4, 'd'}, {5, 'e'}}; auto comp_func = cont.value_comp(); for (const std::pair<int, char> val = {100, 'a'}; auto it : cont) { const bool before = comp_func(it, val); const bool after = comp_func(val, it); std::cout << "键 (" << it.first << ',' << it.second << ") "; if (!before && !after) std::cout << "等价于键 (" << val.first << ")\n"; else if (before) std::cout << "在键 (" << val.first << ") 之前\n"; else if (after) std::cout << "在键 (" << val.first << ") 之后\n"; else std::unreachable(); } }
输出:
键 (1,a) 在键 (100) 之前 键 (2,b) 在键 (100) 之前 键 (3,c) 等价于键 (100) 键 (4,d) 在键 (100) 之后 键 (5,e) 在键 (100) 之后
运行此代码
#include <iostream> #include <flat_set> #include <utility> // 演示模 97 的键比较函数 struct ModCmp { bool operator()(int lhs, int rhs) const { return (lhs % 97) < (rhs % 97); } }; int main() { std::flat_set<int, ModCmp> cont{1, 2, 3, 4, 5}; // 行为与 key_comp() 相同 auto comp_func = cont.value_comp(); for (const int val{100}; const int key : cont) { const bool before = comp_func(key, val); const bool after = comp_func(val, key); std::cout << "键 (" << key << ") "; if (!before && !after) std::cout << key << " 等价于键 (" << val << ")\n"; else if (before) std::cout << key << " 在键 (" << val << ") 之前\n"; else if (after) std::cout << key << " 在键 (" << val << ") 之后\n"; else std::unreachable(); } }
输出:
键 (1) 在键 (100) 之前 键 (2) 在键 (100) 之前 键 (3) 等价于键 (100) 键 (4) 在键 (100) 之后 键 (5) 在键 (100) 之后
参阅
返回用于比较键的函数 (公开成员函数) |