回调函数

Posted 不积跬步*无以至千里

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了回调函数相关的知识,希望对你有一定的参考价值。

定义:通过函数指针来实现函数调用的东西,函数指针参考随笔《函数指针》

好处:通过指针函数的形式,同一类型函数可以有不同实现,调用方可以选择调用不同实现。

主要有两种方式

方式一:通过命名方式

 1 #include <stdio.h>
 2 typedef int (*CallBackFun)(char *p);//typedef定义别名用法
 3 int fun(char *p)
 4 {
 5     printf("fun %s\n",p);
 6     return 0;
 7 
 8 }
 9 
10 int call (CallBackFun pCallBack ,char *p)
11 {
12    printf("call %s\n",p);
13    pCallBack(p);
14    return 0;
15     
16 }
17 
18 int main(int argc,const char* argv[])
19 {
20 
21   char *p = "hello";
22   call(fun,p);
23   return 0;
24 
25 }
26 //执行结果如下:
27 //call hello
28 // fun hello

方式二:直接通过函数指针

 1 #include <stdio.h>
 2 typedef int (*CallBackFun)(char *p);//typedef定义别名用法
 3 int fun(char *p)
 4 {
 5     printf("fun %s\n",p);
 6     return 0;
 7 
 8 }
 9 
10 int call (int (*ptr)(char *p) ,char *p)//不同方式一
11 {
12    printf("call %s\n",p);
13    (*ptr)(p);//不同方式一
14    return 0;
15     
16 }
17 
18 int main(int argc,const char* argv[])
19 {
20 
21   char *p = "hello";
22   call(fun,p);
23   return 0;
24 
25 }
26 //执行结果如下:
27 //call hello
28 // fun hello

 

以上是关于回调函数的主要内容,如果未能解决你的问题,请参考以下文章

满足条件时是不是可以在 GLSL 着色器中回调 C/C++ 函数/代码? [关闭]

ios block和delegate的区别

前端片段整理

通过DOM元素数据集将回调传递给js

对onActivityCreated片段回调有啥误解吗?

从片段替换片段时,onRequestPermissionsResult 回调不起作用