web-dev-qa-db-ja.com

ラムダを受け入れる関数を宣言する方法は?

私は、標準ライブラリでラムダを使用する方法を説明した多くのチュートリアルをインターネットで読みました(std::find)、そしてそれらはすべて非常に興味深いものでしたが、自分の関数にラムダを使用する方法を説明したものは見つかりませんでした。

例えば:

int main()
{
    int test = 5;
    LambdaTest([&](int a) { test += a; });

    return EXIT_SUCCESS;
}

LambdaTestをどのように宣言すればよいですか?最初の引数の型は何ですか?そして、引数として「10」など、渡される匿名関数をどのように呼び出すことができますか?

75
Thomas Bonini

ラムダに加えて関数ポインタと関数オブジェクトも受け入れたい場合は、おそらくテンプレートを使用してoperator()を持つ引数を受け入れます。これは、findのようなstd関数が行うことです。次のようになります。

template<typename Func>
void LambdaTest(Func f) {
    f(10);
}

この定義はc ++ 0x機能を使用しないため、完全に下位互換性があることに注意してください。 c ++ 0x固有のラムダ式を使用する関数の呼び出しのみです。

69
sepp2k

すべてをテンプレート化したくない場合は、次のことができます。

void LambdaTest (const std::function <void (int)>& f)
{
    ...
}
63
doublep

このシンプルだが自明の例に貢献したいと思います。 「呼び出し可能なもの」(関数、関数オブジェクト、およびラムダ)を関数またはオブジェクトに渡す方法を示します。

// g++ -std=c++11 thisFile.cpp

#include <iostream>
#include <thread>

using namespace std;

// -----------------------------------------------------------------
class Box {
public:
  function<void(string)> theFunction; 
  bool funValid;

  Box () : funValid (false) { }

  void setFun (function<void(string)> f) {
    theFunction = f;
    funValid = true;
  }

  void callIt () {
    if ( ! funValid ) return;
    theFunction (" hello from Box ");
  }
}; // class

// -----------------------------------------------------------------
class FunClass {
public:
  string msg;
  FunClass (string m) :  msg (m) { }
  void operator() (string s) {
    cout << msg <<  s << endl; 
  }
};

// -----------------------------------------------------------------
void f (string s) {
  cout << s << endl;
} // ()

// -----------------------------------------------------------------
void call_it ( void (*pf) (string) ) {
  pf( "call_it: hello");
} // ()

// -----------------------------------------------------------------
void call_it1 ( function<void(string)> pf ) {
  pf( "call_it1: hello");
} // ()

// -----------------------------------------------------------------
int main() {

  int a = 1234;

  FunClass fc ( " christmas ");

  f("hello");

  call_it ( f );

  call_it1 ( f );

  // conversion ERROR: call_it ( [&] (string s) -> void { cout << s << a << endl; } );

  call_it1 ( [&] (string s) -> void { cout << s << a << endl; } );

  Box ca;

  ca.callIt ();

  ca.setFun (f);

  ca.callIt ();

  ca.setFun ( [&] (string s) -> void { cout << s << a << endl; } );

  ca.callIt ();

  ca.setFun (fc);

  ca.callIt ();

} // ()
7
cibercitizen1