binary_function Structure Sample

说明如何在 Visual C++ 中使用 (STL)标准模板库 (stl) 中 binary_function 结构。

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

备注

备注

类/参数名在原型不匹配版本在头文件。修改某些提高可读性。

binary_functionA,B,C 类用于,如果基类允许用户轻松地定义采用数据类型 A 和 B 作为参数并返回数据类型 C 对象的二元运算符函数。

示例

// 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;
}

Output

Begin
New value after shift is 40

要求

标题: AMP_LT 功能 AMP_GT

请参见

概念

标准模板库示例