operator==,!=,<,<=,>,>=,<=>(std::multimap)
在标头 <map> 定义
|
||
template< class Key, class T, class Compare, class Alloc > bool operator==( const std::multimap<Key, T, Compare, Alloc>& lhs, |
(1) | |
template< class Key, class T, class Compare, class Alloc > bool operator!=( const std::multimap<Key, T, Compare, Alloc>& lhs, |
(2) | (C++20 前) |
template< class Key, class T, class Compare, class Alloc > bool operator<( const std::multimap<Key, T, Compare, Alloc>& lhs, |
(3) | (C++20 前) |
template< class Key, class T, class Compare, class Alloc > bool operator<=( const std::multimap<Key, T, Compare, Alloc>& lhs, |
(4) | (C++20 前) |
template< class Key, class T, class Compare, class Alloc > bool operator>( const std::multimap<Key, T, Compare, Alloc>& lhs, |
(5) | (C++20 前) |
template< class Key, class T, class Compare, class Alloc > bool operator>=( const std::multimap<Key, T, Compare, Alloc>& lhs, |
(6) | (C++20 前) |
template< class Key, class T, class Compare, class Alloc > synth-three-way-result<T> |
(7) | (C++20 起) |
比较两个 multimap
的内容。
rhs.begin(), rhs.end(),
synth-three-way) 进行比较。此比较忽略 multimap
的定序 Compare。-
T
实现了three_way_comparable
。 - 为(可有 const 限定的)
T
类型的值定义了<
,并且<
是全序关系。
|
(C++20 起) |
参数
lhs, rhs | - | 要比较内容的 multimap
|
- 为使用重载 (1,2), T, Key 必须满足可相等比较 (EqualityComparable) 。
| ||
- 为使用重载 (3-6), Key 必须满足可小于比较 (LessThanComparable) 。顺序关系必须建立全序。
|
返回值
multimap
内容相等时返回 true,否则返回 falsemultimap
内容不相等时返回 true,否则返回 false复杂度
multimap
的大小成线性multimap
的大小成线性注解
各关系运算符是基于各个元素的 operator< 定义的。 |
(C++20 前) |
各关系运算符是基于 synth-three-way 定义的,若有可能则它会使用 operator<=>,否则使用 operator<。 要注意,如果元素类型自身并不提供 operator<=>,但可以隐式转换为可三路比较的类型,则就会用这项转换来替代 operator<。 |
(C++20 起) |
示例
#include <cassert> #include <compare> #include <map> int main() { std::multimap<int, char> a{{1, 'a'}, {2, 'b'}, {3, 'c'}}; std::multimap<int, char> b{{1, 'a'}, {2, 'b'}, {3, 'c'}}; std::multimap<int, char> c{{7, 'Z'}, {8, 'Y'}, {9, 'X'}, {10, 'W'}}; assert ("" "比较相等的容器:" && (a != b) == false && (a == b) == true && (a < b) == false && (a <= b) == true && (a > b) == false && (a >= b) == true && (a <=> b) != std::weak_ordering::less && (a <=> b) != std::weak_ordering::greater && (a <=> b) == std::weak_ordering::equivalent && (a <=> b) >= 0 && (a <=> b) <= 0 && (a <=> b) == 0 && "比较不相等的容器:" && (a != c) == true && (a == c) == false && (a < c) == true && (a <= c) == true && (a > c) == false && (a >= c) == false && (a <=> c) == std::weak_ordering::less && (a <=> c) != std::weak_ordering::equivalent && (a <=> c) != std::weak_ordering::greater && (a <=> c) < 0 && (a <=> c) != 0 && (a <=> c) <= 0 && ""); }
缺陷报告
下列更改行为的缺陷报告追溯地应用于以前出版的 C++ 标准。
缺陷报告 | 应用于 | 出版时的行为 | 正确行为 |
---|---|---|---|
LWG 3431 | C++20 | operator<=> 不需要 T 实现 three_way_comparable
|
需要 |