共用方式為


operator>= (<list>)

測試運算子左邊的清單物件是否大於或等於右邊的清單物件。

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

參數

  • _Left
    list 類型的物件。

  • _Right
    list 類型的物件。

傳回值

若運算子左邊的 list 大於或等於右邊的 list 為 true;反之為 false

備註

list 物件之間的比較是以其元素的成對比較為基礎。 兩個物件之間的大於或等於關聯性,是根據第一對不相等元素的比較。

範例

// 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

請參閱

參考

list 類別

標準樣板程式庫