更多的是好奇。基本上我想知道是否可以在一行中声明多个函数指针,例如:
int a = 1, b = 2;
用函数指针?无需求助于typedef
.
我试过了void (*foo = NULL, *bar = NULL)(int)
。不出所料,这没有奏效。
更多的是好奇。基本上我想知道是否可以在一行中声明多个函数指针,例如:
int a = 1, b = 2;
用函数指针?无需求助于typedef
.
我试过了void (*foo = NULL, *bar = NULL)(int)
。不出所料,这没有奏效。
尝试如下:
void (*a)(int), (*b)(int);
void test(int n)
{
printf("%d\n", n);
}
int main()
{
a = NULL;
a = test;
a(1);
b = test;
b(2);
return 0;
}
编辑:
另一种形式是函数指针数组:
void (*fun[2])(int) = {NULL, NULL};
void test(int n)
{
printf("%d\n",n);
}
int main()
{
fun[0] = NULL;
fun[0] = test;
fun[0](1);
fun[1] = test;
fun[1](2);
}
void (*foo)(int) = NULL, (*bar)(int) = NULL;
or as Grijesh says:
int main(void) {
int a[5], b[55];
int (*aa)[5] = &a, (*bb)[55] = &b;
return 0;
}