operator==,!=,<,<=,>,>=,<=>(std::stack)
来自 cppreference.com
template< class T, class Container > bool operator==( const std::stack<T, Container>& lhs, |
(1) | |
template< class T, class Container > bool operator!=( const std::stack<T, Container>& lhs, |
(2) | |
template< class T, class Container > bool operator< ( const std::stack<T, Container>& lhs, |
(3) | |
template< class T, class Container > bool operator<=( const std::stack<T, Container>& lhs, |
(4) | |
template< class T, class Container > bool operator> ( const std::stack<T, Container>& lhs, |
(5) | |
template< class T, class Container > bool operator>=( const std::stack<T, Container>& lhs, |
(6) | |
template< class T, std::three_way_comparable Container > std::compare_three_way_result_t<Container> |
(7) | (自 C++20 起) |
比较两个容器适配器的底层容器的内容。比较是通过将相应的运算符应用于底层容器来完成的。
内容 |
[编辑] 参数
lhs, rhs | - | 要比较内容的容器适配器 |
-T 必须满足 EqualityComparable 的要求。 |
[编辑] 返回值
1-6) true 如果相应的比较产生 true,否则为 false。
7) 底层容器的三向比较结果。
[编辑] 复杂度
容器大小的线性。
[编辑] 示例
本节不完整 原因:没有示例 |
缺陷报告
以下行为更改的缺陷报告被追溯应用于先前发布的 C++ 标准。
DR | 应用于 | 已发布的行为 | 正确行为 |
---|---|---|---|
LWG 410 | C++98 | 所有比较运算符的语义缺失 | 添加 |