次の方法で共有


binary_function Structure Sample

Visual C++ の標準テンプレート ライブラリ (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;
   };

解説

[!メモ]

プロトタイプのクラスやパラメーター名はヘッダー ファイルのバージョンと一致しない。ただし読みやすさが向上するように変更されました。

ユーザーが <A,B,C> 簡単に引数と戻り値のデータ型の C を取得するときにそのデータ型は12 C を受け取る二項演算子関数を定義できるのに binary_function クラスの基本クラスとして使用されます。

使用例

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

出力

Begin
New value after shift is 40

必要条件

ヘッダー : < 機能 >

参照

概念

標準テンプレート ライブラリのサンプル