回调函数的用法

Posted muzixiaofeng

tags:

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

#include <stdio.h>

void Test_Demo( void ( *FUNC )( int a,int b),int x,int y )
{
//int a = 1;
//int b = 5;

FUNC(x,y);
}

void func(int x,int y)
{
printf("%d ",x+y);

}

int main(void)
{
Test_Demo(func,1,23);


return 0;
}











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

PHP回调函数及匿名函数概念与用法详解

Java 回调函数callback 用法

boost::function用法

boost::function用法

js中回调函数,promise 以及 async/await 的对比用法 对比!!!

关于jQuery回调函数的定义及用法实例