命名空间
变体
操作

operator==,!=,<,<=,>,>=,<=>(std::map)

来自 cppreference.com
< cpp‎ | container‎ | map
 
 
 
 
定义在头文件 <map>
template< class Key, class T, class Compare, class Alloc >

bool operator==( const std::map<Key, T, Compare, Alloc>& lhs,

                 const std::map<Key, T, Compare, Alloc>& rhs );
(1)
template< class Key, class T, class Compare, class Alloc >

bool operator!=( const std::map<Key, T, Compare, Alloc>& lhs,

                 const std::map<Key, T, Compare, Alloc>& rhs );
(2) (直到 C++20)
template< class Key, class T, class Compare, class Alloc >

bool operator<( const std::map<Key, T, Compare, Alloc>& lhs,

                const std::map<Key, T, Compare, Alloc>& rhs );
(3) (直到 C++20)
template< class Key, class T, class Compare, class Alloc >

bool operator<=( const std::map<Key, T, Compare, Alloc>& lhs,

                 const std::map<Key, T, Compare, Alloc>& rhs );
(4) (直到 C++20)
template< class Key, class T, class Compare, class Alloc >

bool operator>( const std::map<Key, T, Compare, Alloc>& lhs,

                const std::map<Key, T, Compare, Alloc>& rhs );
(5) (直到 C++20)
template< class Key, class T, class Compare, class Alloc >

bool operator>=( const std::map<Key, T, Compare, Alloc>& lhs,

                 const std::map<Key, T, Compare, Alloc>& rhs );
(6) (直到 C++20)
template< class Key, class T, class Compare, class Alloc >

synth-three-way-result<T>
    operator<=>( const std::map<Key, T, Compare, Alloc>& lhs,

                 const std::map<Key, T, Compare, Alloc>& rhs );
(7) (从 C++20 开始)

比较两个 map 的内容。

1,2) 检查 lhsrhs 的内容是否相等,也就是说,它们具有相同数量的元素,并且 lhs 中的每个元素都与 rhs 中相同位置的元素相等。
3-6) 按字典顺序比较 lhsrhs 的内容。比较由等效于 std::lexicographical_compare 的函数执行。此比较忽略 map 的排序 Compare
7) 按字典顺序比较 lhsrhs 的内容。比较执行的方式就好像调用了 std::lexicographical_compare_three_way(lhs.begin(), lhs.end(),
                                       rhs.begin(), rhs.end(), synth-three-way)
. 此比较忽略 map 的排序 Compare
返回类型是 synth-three-way 的返回类型(即,synth-three-way-result <T>)。
如果以下条件均不满足,则行为未定义
  • T 满足 three_way_comparable 要求。
  • < 已针对类型 (可能为 const 限定) T 定义,并且 < 是一个全序关系。

<<=>>=!= 运算符分别从 operator<=>operator==合成

(从 C++20 开始)

内容

[编辑] 参数

lhs, rhs - 要比较内容的 map
-
为了使用重载 (1,2),T, Key 必须满足 EqualityComparable 要求。
-
为了使用重载 (3-6),Key 必须满足 LessThanComparable 要求。排序关系必须建立全序。

[编辑] 返回值

1) 如果 map 的内容相等,则为 true,否则为 false
2) 如果 map 的内容不相等,则为 true,否则为 false
3) 如果 lhs 的内容按字典顺序小于 rhs 的内容,则为 true,否则为 false
4) 如果 lhs 的内容按字典顺序小于等于 rhs 的内容,则为 true,否则为 false
5) 如果 lhs 的内容按字典顺序大于 rhs 的内容,则为 true,否则为 false
6) true 如果 lhs 的内容在字典序上大于等于 rhs 的内容,否则为 false
7) 如果存在这样的元素,则 lhsrhs 中第一对非等价元素的相对顺序,否则为 lhs.size() <=> rhs.size()

[编辑] 复杂度

1,2) 如果 lhsrhs 大小不同,则为常数,否则为 map 大小的线性。
3-7)map 大小的线性。

[编辑] 注意

关系运算符是根据元素类型的 operator< 定义的。

(直到 C++20)

关系运算符是根据 synth-three-way 定义的,如果可能,它使用 operator<=>,否则使用 operator<

值得注意的是,如果元素本身没有提供 operator<=>,但可以隐式转换为三向可比较类型,则将使用该转换而不是 operator<

(从 C++20 开始)

[编辑] 示例

#include <cassert>
#include <compare>
#include <map>
 
int main()
{
    std::map<int, char> a{{1, 'a'}, {2, 'b'}, {3, 'c'}};
    std::map<int, char> b{{1, 'a'}, {2, 'b'}, {3, 'c'}};
    std::map<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
需要