C++ 参考手册
- C++11
- C++14
- C++17
- C++20
- C++ 编译器支持情况表
- 独立与宿主实现
- C++ 语言
- C++ 关键词
- 预处理器
- C++ 标准库头文件
- 具名要求
- 功能特性测试 (C++20)
- 工具库
- 类型支持(基本类型、RTTI、类型特性)
- 概念库 (C++20)
- 错误处理
- 动态内存管理
- 日期和时间工具
- 字符串库
- 容器库
- std::array
- std::vector
- std::vector<T,Allocator>::push_back
- std::vector<T,Allocator>::assign
- std::vector<T,Allocator>::get_allocator
- std::vector<T,Allocator>::operator[]
- std::vector<T,Allocator>::front
- std::vector<T,Allocator>::at
- std::vector<T,Allocator>::pop_back
- std::vector<T,Allocator>::end, std::vector<T,Allocator>::cend
- std::vector<T,Allocator>::vector
- std::vector<T,Allocator>::~vector
- std::vector<T,Allocator>::operator=
- std::vector<T,Allocator>::back
- std::vector<T,Allocator>::data
- std::vector<T,Allocator>::begin, std::vector<T,Allocator>::cbegin
- std::vector<T,Allocator>::rbegin, std::vector<T,Allocator>::crbegin
- std::vector<T,Allocator>::rend, std::vector<T,Allocator>::crend
- std::vector<T,Allocator>::empty
- std::vector<T,Allocator>::size
- std::vector<T,Allocator>::max_size
- std::vector<T,Allocator>::reserve
- std::vector<T,Allocator>::capacity
- std::vector<T,Allocator>::shrink_to_fit
- std::vector<T,Allocator>::clear
- std::vector<T,Allocator>::insert
- std::vector<T,Allocator>::emplace
- std::vector<T,Allocator>::erase
- std::vector<T,Allocator>::emplace_back
- std::vector<T,Allocator>::resize
- std::vector<T,Allocator>::swap
- std::swap(std::vector)
- std::erase, std::erase_if (std::vector)
- operator==,!=,<,<=,>,>=,<=>(std::vector)
- std::vector 的推导指引
- std::map
- std::unordered_map
- std::priority_queue
- std::span
- std::forward_list
- std::deque
- std::list
- std::set
- std::multiset
- std::multimap
- std::unordered_set
- std::unordered_multiset
- std::unordered_multimap
- std::stack
- std::queue
- std::vector<bool>
- 结点把柄 (C++17)
- 注释
- 迭代器库
- 范围库 (C++20)
- 算法库
- 数值库
- 输入/输出库
- 文件系统库
- 本地化库
- 正则表达式库
- 原子操作库
- 线程支持库
- 实验性 C++ 特性
- 有用的资源
- 索引
- std 符号索引
- 协程支持 (C++20)
- C++ 关键词
位置:首页 > C++ 参考手册 >容器库 >std::vector > operator==,!=,<,<=,>,>=,<=>(std::vector)
operator==,!=,<,<=,>,>=,<=>(std::vector)
定义于头文件 <vector>
|
||
(1) | ||
template< class T, class Alloc > bool operator==( const std::vector<T,Alloc>& lhs, |
(C++20 前) | |
template< class T, class Alloc > constexpr bool operator==( const std::vector<T,Alloc>& lhs, |
(C++20 起) | |
template< class T, class Alloc > bool operator!=( const std::vector<T,Alloc>& lhs, |
(2) | (C++20 前) |
template< class T, class Alloc > bool operator<( const std::vector<T,Alloc>& lhs, |
(3) | (C++20 前) |
template< class T, class Alloc > bool operator<=( const std::vector<T,Alloc>& lhs, |
(4) | (C++20 前) |
template< class T, class Alloc > bool operator>( const std::vector<T,Alloc>& lhs, |
(5) | (C++20 前) |
template< class T, class Alloc > bool operator>=( const std::vector<T,Alloc>& lhs, |
(6) | (C++20 前) |
template< class T, class Alloc > constexpr /* see below */ operator<=>( const std::vector<T,Alloc>& lhs, |
(7) | (C++20 起) |
比较二个 vector
的内容。
1-2) 检查
lhs
与 rhs
的内容是否相等,即它们是否拥有相同数量的元素且 lhs
中每个元素与 rhs
的同位置元素比较相等。7) 按字典序比较
lhs
与 rhs
的内容。如同通过在二个 vector
上以进行合成三路比较(见后述)的函数对象调用 std::lexicographical_compare_three_way 进行比较。返回类型同合成三路比较的结果类型。
给定分别作为左操作数与右操作数的两个 const E 左值 lhs
与 rhs
(其中 E
为 T
),合成三路比较定义如下:
- 若 std::three_way_comparable_with<E, E> 得到满足则等价于 lhs <=> rhs ;
- 否则,若以 operator< 比较二个 const E 左值为良构且结果类型满足
boolean-testable
,则等价于
lhs < rhs ? std::weak_ordering::less : rhs < lhs ? std::weak_ordering::greater : std::weak_ordering::equivalent
- 否则,不定义合成三路比较,而 operator<=> 不参与重载决议。
boolean-testable
被满足但未被实现,或使用 operator< 但 E
与 <
不建立全序,则 operator<=> 的行为未定义。参数
lhs, rhs | - | 要比较内容的 vector
|
- 为使用重载 (1-2) , T 必须满足可相等比较 (EqualityComparable) 的要求。
| ||
- 为使用重载 (3-6) , T 必须满足可小于比较 (LessThanComparable) 的要求。顺序关系必须建立全序。
|
返回值
1) 若
vector
内容相等则为 true ,否则为 false2) 若
vector
内容不相等则为 true ,否则为 false3) 若
lhs
的内容按字典序小于 rhs
的内容则为 true ,否则为 false4) 若
lhs
的内容按字典序小于或等于 rhs
的内容则为 true ,否则为 false5) 若
lhs
的内容按字典序大于 rhs
的内容则为 true ,否则为 false6) 若
lhs
的内容按字典序大于或等于 rhs
的内容则为 true ,否则为 false7) 若
若
若
否则为 std::strong::equal 。
lhs
的内容按字典序小于 rhs
的内容则为 std::strong_ordering::less ;若
lhs
的内容按字典序大于 rhs
的内容则为 std::strong_ordering::greater ;若
lhs
与 rhs
中的首对不等价元素无序则为 std::partial_ordering::unordered ;否则为 std::strong::equal 。
复杂度
1-2) 若
lhs
与 rhs
的大小不同则为常数,否则与 vector
大小成线性3-7) 与
vector
大小成线性