binary_function Structure Sample
Ilustruje sposób użycia binary_function struktury w bibliotece szablonu (STL), Standard, w programie Visual 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;
};
Uwagi
[!UWAGA]
Nazwy klasy/parametr w prototyp nie pasują do wersji w pliku nagłówkowym.Niektóre zostały zmodyfikowane w celu poprawienia czytelności.
binary_function< A, B, C > Klasa jest używana jako klasa podstawowa, aby umożliwić użytkownikowi łatwo definiować funkcji operatora dwuargumentowego podjąć typów danych a i b jako argumenty i zwraca dane typu c obiektów.
Przykład
// 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;
}
Dane wyjściowe
Begin
New value after shift is 40
Wymagania
Nagłówek: < funkcjonalne >