operator< (<queue>)
测试,如果运算符左侧的队列对象比右侧的队列对象较少。
bool operator<(
const queue <Type, Container>& _Left,
const queue <Type, Container>& _Right,
);
参数
_Left
类型 queue对象。_Right
类型 queue对象。
返回值
true,如果运算符左侧的队列与和不相等与队列小于位于运算符的右侧;为 false。
备注
在队列对象之间的比较基于元素的一种比较成对。 小于两个队列对象之间的关系。根据第一个不相等对比较元素。
示例
// queue_op_lt.cpp
// compile with: /EHsc
#include <queue>
#include <iostream>
int main( )
{
using namespace std;
// Declares queues with default deque base container
queue <int> q1, q2, q3;
q1.push( 1 );
q1.push( 2 );
q2.push( 5 );
q2.push( 10 );
q3.push( 1 );
q3.push( 2 );
if ( q1 < q2 )
cout << "The queue q1 is less than the queue q2." << endl;
else
cout << "The queue q1 is not less than the queue q2." << endl;
if ( q1 < q3 )
cout << "The queue q1 is less than the queue q3." << endl;
else
cout << "The queue q1 is not less than the queue q3." << endl;
}
要求
页眉: <队列>
命名空间: std