#include <iostream>
using namespace std;
// 定义了一种函数指针类型callBack
typedef int (*callBack)(int, int);
int myTest(int a, int b)
{
cout<<a<<"/t"<<b<<endl;
return 0;
}
void TestCallBack(callBack my)
{
int a = 1;
int b = 1;
if(my != NULL)
my(a,b);
return;
}
int main()
{
callBack myFuc = NULL;
myFuc = myTest;
TestCallBack(myFuc);
return 0;
}
回调函数
最新推荐文章于 2023-06-21 11:05:36 发布