共用方式為


greater_equal 結構

對其引數執行大於或等於作業 (operator>=) 的二進位述詞。

template<class Type = void>
   struct greater_equal : public binary_function <Type, Type, bool> 
   {
      bool operator()(
         const Type& Left, 
         const Type& Right
      ) const;
   };

// specialized transparent functor for operator>=
template<>
   struct greater_equal<void>
   {
      template<class Type1, class Type2>
      auto operator()(Type1&& Left, Type2&& Right) const
         -> decltype(std::forward<Type1>(Left)
            >= std::forward<Type2>(Right));
   };

參數

  • Type, Type1, Type2
    任何支援operator>=接受指定或推斷型別的運算元之類型。

  • Left
    左邊的大於或等於運算元作業。 非特製化樣板接受型別 Type 的左值參考引數。 特製化樣板在左值和右值推斷型別 Type1 參考引數能完美轉送。

  • Right
    右邊的大於或等於運算元作業。 非特製化樣板接受型別 Type 的左值參考引數。 特製化樣板在左值和右值推斷的型別 Type2參考引數能完美轉送。

傳回值

Left>=Right 的結果。 特製化樣板能完善結果的轉送,其具有 operator>=所傳回的型別。

備註

只有在此型別滿足標準數學需求時,二元述詞 greater_equal<Type> 提供一組嚴格弱式型別 Type 的項目值至一個同等類別這個型別符合。 任何指標型別的特製化會產生項目的總定序,使得不同值的元素會依照彼此排序。

範例

// functional_greater_equal.cpp
// compile with: /EHsc
#include <vector>
#include <algorithm>
#include <functional>
#include <cstdlib>
#include <iostream>

int main( )
{
   using namespace std;
   vector <int> v1;
   vector <int>::iterator Iter1;

   int i;
   v1.push_back( 6262 );
   v1.push_back( 6262 );
   for ( i = 0 ; i < 5 ; i++ )
   {
      v1.push_back( rand( ) );
   }

   cout << "Original vector v1 = ( " ;
   for ( Iter1 = v1.begin( ) ; Iter1 != v1.end( ) ; Iter1++ )
      cout << *Iter1 << " ";
   cout << ")" << endl;

   // To sort in ascending order,
   // use default binary predicate less<int>( )
   sort( v1.begin( ), v1.end( ) );
   cout << "Sorted vector v1 = ( " ;
   for ( Iter1 = v1.begin( ) ; Iter1 != v1.end( ) ; Iter1++ )
      cout << *Iter1 << " ";
   cout << ")" << endl;

   // To sort in descending order, 
   // specify binary predicate greater_equal<int>( )
   sort( v1.begin( ), v1.end( ), greater_equal<int>( ) );
   cout << "Resorted vector v1 = ( " ;
   for ( Iter1 = v1.begin( ) ; Iter1 != v1.end( ) ; Iter1++ )
      cout << *Iter1 << " ";
   cout << ")" << endl;
}

Output

Original vector v1 = ( 6262 6262 41 18467 6334 26500 19169 )
Sorted vector v1 = ( 41 6262 6262 6334 18467 19169 26500 )
Resorted vector v1 = ( 26500 19169 18467 6334 6262 6262 41 )

需求

標題: <functional>

命名空間: std

請參閱

參考

標準樣板程式庫