共用方式為


operator> (set)

測試,如果位於運算子左邊的集合物件大於右邊的集合物件大於。

bool operator>(
   const set <Key, Traits, Allocator>& _Left,
   const set <Key, Traits, Allocator>& _Right
);

參數

  • _Left
    型別 set物件。

  • _Right
    型別 set物件。

傳回值

true ,如果位於運算子左邊的集合與運算子右邊的集合大;否則 false

備註

集合中物件之間的比較可能會依據其項目比較配對方式。 大於兩個物件之間的關聯性會在第一次對的比較不相等的項目。

範例

// set_op_gt.cpp
// compile with: /EHsc
#include <set>
#include <iostream>

int main( )
{
   using namespace std;
   set <int> s1, s2, s3;
   int i;

   for ( i = 0 ; i < 3 ; i++ )
   {
      s1.insert ( i );
      s2.insert ( i * i );
      s3.insert ( i - 1 );
   }

   if ( s1 > s2 )
      cout << "The set s1 is greater than the set s2." << endl;
   else
      cout << "The set s1 is not greater than the set s2." << endl;

   if ( s1 > s3 )
      cout << "The set s1 is greater than the set s3." << endl;
   else
      cout << "The set s1 is not greater than the set s3." << endl;
}
  
  

需求

標題: <set>

命名空間: std

請參閱

參考

標準樣板程式庫