码迷,mamicode.com
首页 > 其他好文 > 详细

怎么使用带参数的回调函数?

时间:2020-02-25 12:38:41      阅读:60      评论:0      收藏:0      [点我收藏+]

标签:callback   lsp   this   space   and   回调函数   ace   handle   padding   

眼尖的朋友可能发现了,前面的例子里面回调函数是没有参数的,那么我们能不能回调那些带参数的函数呢?答案是肯定的。那么怎么调用呢?我们稍微修改一下上面的例子就可以了:
  1. #include<stdio.h>
  2. int Callback_1(int x) // Callback Function 1
  3. {
  4.     printf("Hello, this is Callback_1: x = %d ", x);
  5.     return 0;
  6. }
  7. int Callback_2(int x) // Callback Function 2
  8. {
  9.     printf("Hello, this is Callback_2: x = %d ", x);
  10.     return 0;
  11. }
  12. int Callback_3(int x) // Callback Function 3
  13. {
  14.     printf("Hello, this is Callback_3: x = %d ", x);
  15.     return 0;
  16. }
  17. int Handle(int y, int (*Callback)(int))
  18. {
  19.     printf("Entering Handle Function. ");
  20.     Callback(y);
  21.     printf("Leaving Handle Function. ");
  22. }
  23. int main()
  24. {
  25.     int a = 2;
  26.     int b = 4;
  27.     int c = 6;
  28.     printf("Entering Main Function. ");
  29.     Handle(a, Callback_1);
  30.     Handle(b, Callback_2);
  31.     Handle(c, Callback_3);
  32.     printf("Leaving Main Function. ");
  33.     return 0;
  34. }
复制代码
运行结果:
Entering Main Function.Entering Handle Function.Hello, this is Callback_1: x = 2Leaving Handle Function.Entering Handle Function.Hello, this is Callback_2: x = 4Leaving Handle Function.Entering Handle Function.Hello, this is Callback_3: x = 6Leaving Handle Function.Leaving Main Function.
 

怎么使用带参数的回调函数?

标签:callback   lsp   this   space   and   回调函数   ace   handle   padding   

原文地址:https://www.cnblogs.com/20560838q/p/12360939.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!