다음을 통해 공유


binary_negate Class

지정한 이진 함수의 반환 값을 무효화 하는 멤버 함수를 제공 하는 템플릿 클래스.

template<class Operation>
   class binary_negate
      : public binary_function <
         typename Operation::first_argument_type,
         typename Operation::second_argument_type, 
         bool> 
   {
   public:
   explicit binary_negate(
      const Operation& _Func
   );
   bool operator()(
      const typename Operation::first_argument_type& _Left,
      const typename Operation::second_argument_type& _Right
   ) const;
   };

매개 변수

  • _Func
    정하도록 이진 함수입니다.

  • _Left
    왼쪽된 피연산자가 정하도록 이진 함수.

  • _Right
    정하도록 이진 함수의 오른쪽 피연산자입니다.

반환 값

이진 함수를 부정 합니다.

설명

템플릿 클래스는 이진 함수 개체 _ 복사본 저장Func.이 클래스의 멤버 함수 정의 operator() 로 반환 !_(_Right, _ 왼쪽) Func.

생성자의 binary_negate 거의 직접 사용 하지 않습니다.도우미 함수 은 사용 하지 않 는 일반적으로 선언 하 고 사용 하는 것이 좋습니다 있는 binary_negator 어댑터 조건자입니다.

예제

// functional_binary_negate.cpp
// compile with: /EHsc
#define _CRT_RAND_S
#include <stdlib.h>

#include <vector>
#include <algorithm>
#include <functional>
#include <iostream>

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

   unsigned int i;
   v1.push_back( 6262 );
   v1.push_back( 6262 );
   unsigned int randVal = 0;
   for ( i = 0 ; i < 5 ; i++ )
   {
      rand_s(&randVal);
      v1.push_back( randVal );
   }

   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<unsigned 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,
   // use the binary_negate function
   sort( v1.begin( ), v1.end( ),
   binary_negate<less<unsigned int> >(less<unsigned int>( ) ) );

   // The helper function not2 could also have been used
   // in the above line and is usually preferred for convenience
   // sort( v1.begin( ), v1.end( ), not2(less<unsigned int>( ) ) );

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

요구 사항

헤더: <functional>

std

참고 항목

참조

표준 C++ 라이브러리에서 스레드로부터의 안전성

표준 템플릿 라이브러리