关于C/C++ 中 typedef 的问题。typedef int (*FUNC)(int c,int p);
发布网友
发布时间:2024-10-10 06:32
我来回答
共1个回答
热心网友
时间:2024-11-24 05:44
一般可以这么干:
FUNC *pFunTest = NULL;
int Test(int c,int p)
{
...
}
// 使用时
pFunTest = Test;
// 调用时
pFunTest (3,8);
就可以了。追问typedef int (*FUNC)(int c,int p);
之后FUNC *pFunTest = NULL ??? 是 FUNC pFunTest = NULL 吧!