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 |
-T, Key 必须满足 EqualityComparable 的要求才能使用重载 (1,2)。 | ||
-Key 必须满足 LessThanComparable 的要求才能使用重载 (3-6)。排序关系必须建立全序。 |
[编辑] 返回值
multimap
的内容相等,则为 true,否则为 false。multimap
的内容不相等,则为 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 ("" "Compare equal containers:" && (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 && "Compare non equal containers:" && (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++ 标准。
DR | 应用于 | 发布的行为 | 正确的行为 |
---|---|---|---|
LWG 3431 | C++20 | operator<=> 不要求 T 建模为 three_way_comparable |
要求 |