C 中的回调函数
何时以及如何使用回调函数:
回调函数是作为参数传递给另一个函数的函数指针或对象。然后在被调用函数中调用这些回调函数,以根据提供的回调逻辑自定义其行为。
使用回调函数的常见场景:
C 中 Callable 的类型(11):
回调功能可以使用多种类型的可调用对象来实现,包括:
编写回调:
编写回调类型的语法因所使用的可调用类型而异。以下是概述:
1。函数指针:
typedef int (*f_int_t)(int); int (* foo_p)(int);
2.指向成员函数的指针:
typedef int (C::* f_C_int_t)(int); int (C::* C_foo_p)(int);
3. std::函数:
std::function<int(int)> stdf_foo = &foo; std::function<int(const C&, int)> stdf_C_foo = &C::foo;
4。模板化回调类型:
template<class R, class T> void stdf_transform_every_int_templ(int * v, unsigned const n, std::function<R(T)> fp)
调用回调:
调用回调的语法根据可调用类型的不同而有所不同。以下是概述:
1。函数指针:
int b = foobar(a, foo);
2.指向成员函数的指针:
int b = C_foobar(a, my_c, &C::foo);
3. std::函数:
int b = stdf_foobar(a, stdf_foo);
4。模板化回调类型:
stdf_transform_every_int_templ(&a[0], 5, &foo);
示例:
考虑以下使用回调转换数组中每个整数的函数示例:
void tranform_every_int(int * v, unsigned n, int (*fp)(int)) { for (unsigned i = 0; i < n; ++i) { v[i] = fp(v[i]); } }
该函数可以与不同的回调函数配合使用,实现不同的功能行为:
// Using a function pointer int double_int(int x) { return 2*x; } int a[5] = {1, 2, 3, 4, 5}; tranform_every_int(&a[0], 5, double_int); // Transform the array using the double_int callback // Using lambda expression tranform_every_int(&a[0], 5, [](int x) -> int { return x/2; }); // Transform the array using an anonymous function that divides each element by 2 // Using std::bind int nine_x_and_y (int x, int y) { return 9*x + y; } std::placeholders::_1; tranform_every_int(&a[0], 5, std::bind(nine_x_and_y, _1, 4)); // Transform the array using std::bind with nine_x_and_y
总之,回调函数提供了一种强大而灵活的机制,用于自定义函数的行为并在 C 中启用动态运行时行为。它们可以使用各种可调用函数来实现,并且它们的语法也相应不同。
以上是我应该何时以及如何使用 C 中的回调函数?的详细内容。更多信息请关注PHP中文网其他相关文章!