다음을 통해 공유


binder1st Class

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

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

매개 변수

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

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

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

반환 값

결과 첫 번째 인수는 이진 함수 개체를 값으로 바인딩에서 단항 함수 객체_Left.

설명

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

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

예제

// functional_binder1st.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(),
        binder1st<less<int> >(less<int>(), 10));
    cout << "The number of elements in v1 greater than 10 is: "
         << result1 << "." << endl;

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

요구 사항

헤더: <functional>

네임 스페이스: std

참고 항목

참조

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

표준 템플릿 라이브러리