共用方式為


greater 結構

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

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

// specialized transparent functor for operator>
template<>
   struct greater<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<Type> 提供一組嚴格弱式型別 Type 的項目值至一個同等類別這個型別符合。 任何指標型別的特製化會產生項目的總定序,使得不同值的元素會依照彼此排序。

範例

// functional_greater.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;
   for ( i = 0 ; i < 8 ; 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<int>( )
   sort( v1.begin( ), v1.end( ), greater<int>( ) );
   cout << "Resorted vector v1 = ( " ;
   for ( Iter1 = v1.begin( ) ; Iter1 != v1.end( ) ; Iter1++ )
      cout << *Iter1 << " ";
   cout << ")" << endl;
}

Output

Original vector v1 = ( 41 18467 6334 26500 19169 15724 11478 29358 )
Sorted vector v1 = ( 41 6334 11478 15724 18467 19169 26500 29358 )
Resorted vector v1 = ( 29358 26500 19169 18467 15724 11478 6334 41 )

需求

標題: <functional>

命名空間: std

請參閱

參考

標準樣板程式庫