Sdílet prostřednictvím


binary_function Structure Sample

Znázorňuje použití binary_function struktury v standardní šablonu knihovny (STL) v jazyce C++.

template<class _A1, class _A2, class _R>
   struct binary_function
   {
      typedef _A1 first_argument_type;
      typedef _A2 second_argument_type;
      typedef _R result_type;
   };

Poznámky

[!POZNÁMKA]

Názvy tříd/parametr v prototyp verze v záhlaví souboru neodpovídají.Některé byly upraveny, aby se zlepšila čitelnost.

binary_function< A, B, C > Třída slouží jako základní třída uživateli snadno definovat binární operátor funkcí, které přijmout jako argumenty datové typy a a b a c objekty typu dat vrátit.

Příklad

// binfunc.cpp
// compile with: /EHsc
//
// Structure used: binary_function<A,B,C> - base
//                 class used to create operator
//                 functions taking data types A
//                 and B and returning data type C.

#include <functional>
#include <iostream>

using namespace std ;

class binary_test : public binary_function<binary_test &,int,float>
{
public:
  float value;
  binary_test(){value=10.0;}
  binary_test(float x){value=x;}
  result_type operator<<(second_argument_type arg2);
};

binary_test::result_type
binary_test::operator<<(binary_test::second_argument_type arg2)
{
  value = (float)(((int)value) << arg2);
  cout << "New value after shift is " << value << endl;
  return value;
}

int main(void)
{
  binary_test item;

  cout << "Begin" << endl;
  item = item << 2;
}

Výsledek

Begin
New value after shift is 40

Požadavky

Záhlaví: < funkční >

Viz také

Koncepty

Standardní šablona knihovny vzorků