C 中的回调
回调是作为参数传递给函数或类的 可调用 对象,允许根据特定回调自定义行为
使用回调的原因:
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中文网其他相关文章!