C のコールバック
コールバックは、関数またはクラスに引数として渡される 呼び出し可能な オブジェクトです。 、特定のコールバックに基づいて動作をカスタマイズできます。 function.
コールバックを使用する理由:
C 11 の呼び出し可能オブジェクト:
関数ポインターの記述:
int (*)(int); // Function pointer type taking one int argument, returning int int (* foo_p)(int) = &foo; // Initialize pointer to function foo
電話表記法:
int foobar(int x, int (*moo)(int)); foobar(a, &foo); // Call foobar with pointer to foo as callback
std::function オブジェクト:
std::function<int(int)> stdf_foo = &foo;
呼び出し表記:
int stdf_foobar(int x, std::function<int(int)> moo); stdf_foobar(a, stdf_foo);
ラムダ式:
stdf_foobar(a, [c](int x) -> int { return 7+c*x; });
std::bind 式:
int nine_x_and_y (int x, int y) { return 9*x + y; } stdf_foobar(a, std::bind(nine_x_and_y, _1, 3));
テンプレート化されたコールバック:
template<class R, class T> void stdf_transform_every_int_templ(int * v, unsigned const n, std::function<R(T)> fp) {...}
電話表記法:
stdf_transform_every_int_templ<int,int&>(&a[0], 5, &woof);
以上がコールバックは C の柔軟性とカスタマイズをどのように強化しますか?の詳細内容です。詳細については、PHP 中国語 Web サイトの他の関連記事を参照してください。