operator<= (<list>)
如果在运算符左侧的列表对象小于或等于右侧,对象的列表测试。
bool operator<=(
const list<Type, Allocator>& _Left,
const list<Type, Allocator>& _Right
);
参数
_Left
类型 列表对象。_Right
类型 列表对象。
返回值
true,如果在运算符左侧的列表小于或等于列表在运算符的右侧;否则 false。
备注
之间该比较列表对象根据其元素的比较pairwise。 小于或等于两个对象之间的关系于比较的第一对不相等元素。
示例
// list_op_le.cpp
// compile with: /EHsc
#include <list>
#include <iostream>
int main( )
{
using namespace std;
list <int> c1, c2;
c1.push_back( 1 );
c1.push_back( 2 );
c1.push_back( 4 );
c2.push_back( 1 );
c2.push_back( 3 );
if ( c1 <= c2 )
cout << "List c1 is less than or equal to list c2." << endl;
else
cout << "List c1 is greater than list c2." << endl;
}
要求
标头: <list>
命名空间: std