C/C++中如何使用typedef給函式指標取別名使其更具可讀性
阿新 • • 發佈:2019-01-04
舉個小列子
#include <stdio.h>
void e_g(int a)
{
printf("a=%d", a);
}
typedef void(*FIRST_FUNCTION)(int);
int main()
{
FIRST_FUNCTION p;
p = e_g;
p(888);
getchar();
return 0;
}
由上面的列子可以看出可以用 FIRST_FUNCTION來表示一個指向e_g(int a)的函式指標
下面是執行結果:
可以把函式指標變數和普通變數一樣來使用
下面再來舉幾個例子
#include <stdio.h> void e_g(int a) { printf("a=%d", a); } typedef void(*FIRST_FUNCTION)(int); void demo(FIRST_FUNCTION f) { f(999); } int main() { demo(e_g); getchar(); return 0; }
執行結果:
是不是看出了可讀性變強了呢!