다음을 통해 공유


unary_negate Class

지정한 단항 함수 반환 값을 무효화 하는 멤버 함수를 제공 하는 템플릿 클래스입니다.

template<class Predicate>
   class unary_negate
      : public unary_function<
         typename Predicate::argument_type,
         bool> 
   {
   public:
   explicit unary_negate(
      const Predicate& _Func
   );
   bool operator()(
      const typename Predicate::argument_type& _Left ) const;
   };

매개 변수

  • _Func
    정하도록 단항 함수입니다.

  • _Left
    정하도록 단항 함수의 피연산자입니다.

반환 값

단항 함수를 부정 합니다.

설명

단항 함수 개체 _ 복사본을 저장 하는 템플릿 클래스Func. 이 클래스의 멤버 함수 정의 operator() 로 반환 !_Func(_Left).

생성자의 unary_negate 거의 직접 사용 하지 않습니다.도우미 함수 not1 를 선언 하 고 사용 하기 쉽게 제공 된 unary_negator 어댑터 조건자.

예제

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

using namespace std;

int main()
{
    vector<int> v1;
    vector<int>::iterator Iter;

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

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

    vector<int>::iterator::difference_type result1;
    // Count the elements greater than 10
    result1 = count_if(v1.begin(), v1.end(), bind2nd(greater<int>(), 10));
    cout << "The number of elements in v1 greater than 10 is: "
         << result1 << "." << endl;

    vector<int>::iterator::difference_type result2;
    // Use the negator to count the elements less than or equal to 10
    result2 = count_if(v1.begin(), v1.end(),
        unary_negate<binder2nd <greater<int> > >(bind2nd(greater<int>(),10)));

    // The following helper function not1 also works for the above line
    // not1(bind2nd(greater<int>(), 10)));

    cout << "The number of elements in v1 not greater than 10 is: "
         << result2 << "." << endl;
}
  
  

요구 사항

헤더: <functional>

네임 스페이스: std

참고 항목

참조

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

표준 템플릿 라이브러리