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

来自cppreference.com
< cpp‎ | container‎ | stack

 
 
 
的std ::堆栈
成员函数
原文:
Member functions
这段文字是通过 Google Translate 自动翻译生成的。
您可以帮助我们检查、纠正翻译中的错误。详情请点击这里
stack::stack
stack::~stack
stack::operator=
元素的访问
原文:
Element access
这段文字是通过 Google Translate 自动翻译生成的。
您可以帮助我们检查、纠正翻译中的错误。详情请点击这里
stack::top
容量
原文:
Capacity
这段文字是通过 Google Translate 自动翻译生成的。
您可以帮助我们检查、纠正翻译中的错误。详情请点击这里
stack::empty
stack::size
修饰符
原文:
Modifiers
这段文字是通过 Google Translate 自动翻译生成的。
您可以帮助我们检查、纠正翻译中的错误。详情请点击这里
stack::push
stack::emplace
stack::pop
stack::swap
 

检查到模板循环:Template:include page

template<  >

bool operator==( stack<>& lhs,

                 stack<>& rhs );
(1)
template<  >

bool operator!=( stack<>& lhs,

                 stack<>& rhs );
(2)
template<  >

bool operator<( stack<>& lhs,

                stack<>& rhs );
(3)
template<  >

bool operator<=( stack<>& lhs,

                 stack<>& rhs );
(4)
template<  >

bool operator>( stack<>& lhs,

                stack<>& rhs );
(5)
template<  >

bool operator>=( stack<>& lhs,

                 stack<>& rhs );
(6)

Compares the contents of the underlying containers of two container adaptors. The comparison is done by applying the corresponding operator to the underlying containers.

[编辑] 参数

lhs, rhs - container adaptors whose contents to compare

[编辑] 返回值

true if the corresponding comparison yields true, false otherwise.

[编辑] 复杂性

线性大小的容器
原文:
Linear in the size of the container
这段文字是通过 Google Translate 自动翻译生成的。
您可以帮助我们检查、纠正翻译中的错误。详情请点击这里