다음을 통해 공유


binary_function Struct

이진 함수 개체를 제공 하는 파생된 클래스에서 상속 될 수 있는 형식을 정의 하는 빈 기본 구조체.

template<class Arg1, class Arg2, class Result>
   struct binary_function {
      typedef Arg1 first_argument_type;
      typedef Arg2 second_argument_type;
      typedef Result result_type;
   };

설명

템플릿을 구조체 형식의 멤버 함수를 정의 하는 클래스를 기반으로 사용 됩니다.

result_type operator ()( constfirst_argument_type &,

constsecond_argument_type & ) 상수

이러한 모든 이진 함수는 첫 번째 인수 형식으로 참조할 수 있습니다 first_argument_type, 두 번째 인수는 입력으로 second_argument_type, 및 반환 형식으로 result_type.

예제

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

using namespace std;

template <class Type> class average: 
binary_function<Type, Type, Type> 
{
public:
   result_type operator( ) ( first_argument_type a, 
                 second_argument_type b )
   {
      return (result_type) ( ( a + b ) / 2 );
   }
};

int main( )
{
   vector <double> v1, v2, v3 ( 6 );
   vector <double>::iterator Iter1, Iter2, Iter3;
   
   for ( int i = 1 ; i <= 6 ; i++ )
      v1.push_back( 11.0 / i );

   for ( int j = 0 ; j <= 5 ; j++ )
      v2.push_back( -2.0 * j );

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

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

   // Finding the element-wise averages of the elements of v1 & v2
   transform ( v1.begin( ),  v1.end( ), v2.begin( ), v3.begin ( ), 
      average<double>( ) );

   cout << "The element-wise averages are: ( " ;
   for ( Iter3 = v3.begin( ) ; Iter3 != v3.end( ) ; Iter3++ )
      cout << *Iter3 << " ";
   cout << ")" << endl;
}
  

요구 사항

헤더: <functional>

네임 스페이스: std

참고 항목

참조

binary_function Structure Sample

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

표준 템플릿 라이브러리