다음을 통해 공유


binder2nd Class

이진 함수의 두 번째 인수에 지정 된 값에 바인딩하여 이진 함수 개체를 단항 함수 개체로 변환 하는 생성자를 제공 하는 템플릿 클래스입니다.

template<class Operation>
   class binder2nd
      : public unary_function <
         typename Operation::first_argument_type,
         typename Operation::result_type> 
   {
   public:
   typedef typename Operation::argument_type argument_type;
   typedef typename Operation::result_type result_type;
   binder2nd(
      const Operation& _Func,
      const typename Operation::second_argument_type& _Right
   );
   result_type operator()(
      const argument_type& _Left
   ) const;
   result_type operator()(
      argument_type& _Left
   ) const;
   protected:
   Operation op;
   typename Operation::second_argument_type value;
   };

매개 변수

  • _Func
    단항 함수 개체로 변환 이진 함수 개체입니다.

  • _Right
    값이 두 번째 인수는 이진 함수 개체를 바인딩할 수 있습니다.

  • _Left
    고정된 값의 두 번째 인수에 적용할된 이진 개체 비교 인수의 값입니다.

반환 값

결과 값을 두 번째 인수는 이진 함수 개체를 바인딩에서 단항 함수 객체_Right.

설명

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

경우 _Func 형식의 개체인 작업 고 c는 상수 다음 bind2nd ( _Func, c ) 같습니다는 binder2nd 클래스 생성자 binder2nd<작업> ( _Func, c ) 하 고 편리 합니다.

예제

// functional_binder2nd.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 <= 5; i++)
    {
        v1.push_back(5 * i);
    }

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

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

    // Compare using binder1st fixing 1st argument:
    // count the number of integers < 10 in the vector
    vector<int>::iterator::difference_type result2;
    result2 = count_if(v1.begin(), v1.end(),
        binder1st<greater<int> >(greater<int>(), 10));
    cout << "The number of elements in v1 less than 10 is: "
         << result2 << "." << endl;
}
  
  

요구 사항

헤더: <functional>

네임 스페이스: std

참고 항목

참조

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

표준 템플릿 라이브러리