operator>= (<list>)

如果在运算符左侧的列表对象大于或等于右侧,对象的列表测试。

bool operator>=(
   const list<Type, Allocator>& _Left,
   const list<Type, Allocator>& _Right
);

参数

  • _Left
    类型 列表对象。

  • _Right
    类型 列表对象。

返回值

true,如果在运算符左侧的列表大于或等于列表在运算符的右侧;否则 false

备注

之间该比较列表对象根据其元素的比较pairwise。 大于或等于两个对象之间的关系于比较的第一对不相等元素。

示例

// list_op_ge.cpp
// compile with: /EHsc
#include <list>
#include <iostream>

int main( ) 
{
   using namespace std; 
   list <int> c1, c2;
   c1.push_back( 1 );
   c1.push_back( 3 );
   c1.push_back( 1 );

   c2.push_back( 1 );
   c2.push_back( 2 );
   c2.push_back( 2 );

   if ( c1 >= c2 )
      cout << "List c1 is greater than or equal to list c2." << endl;
   else
      cout << "List c1 is less than list c2." << endl;
}
  

要求

标头: <list>

命名空间: std

请参见

参考

标准模板库