void (*func)(int(*[ ])());
答案 0 :(得分:31)
阅读毛茸茸的声明者的一般程序是找到最左边的标识符并逐步解决,记住在[]
之前()
和*
绑定(即*a[]
是一个指针数组,而不是指向数组的指针。由于参数列表中缺少标识符,这种情况会变得更加困难,但[]
再次绑定*
之前,因此我们知道*[]
表示一组poitners。
所以,给定
void (*func)(int(*[ ])());
我们按如下方式细分:
func -- func
*func -- is a pointer
(*func)( ) -- to a function taking
(*func)( [ ] ) -- an array
(*func)( *[ ] ) -- of pointers
(*func)( (*[ ])()) -- to functions taking
-- an unspecified number of parameters
(*func)(int(*[ ])()) -- returning int
void (*func)(int(*[ ])()); -- and returning void
在实践中看起来会是这样的:
/**
* Define the functions that will be part of the function array
*/
int foo() { int i; ...; return i; }
int bar() { int j; ...; return j; }
int baz() { int k; ...; return k; }
/**
* Define a function that takes the array of pointers to functions
*/
void blurga(int (*fa[])())
{
int i;
int x;
for (i = 0; fa[i] != NULL; i++)
{
x = fa[i](); /* or x = (*fa[i])(); */
...
}
}
...
/**
* Declare and initialize an array of pointers to functions returning int
*/
int (*funcArray[])() = {foo, bar, baz, NULL};
/**
* Declare our function pointer
*/
void (*func)(int(*[ ])());
/**
* Assign the function pointer
*/
func = blurga;
/**
* Call the function "blurga" through the function pointer "func"
*/
func(funcArray); /* or (*func)(funcArray); */
答案 1 :(得分:20)
这不是声明,而是宣言。
它将func
声明为指向函数的指针,该函数返回void并获取类型为int (*[])()
的单个参数,该参数本身是一个指向函数的指针,该函数返回int并采用固定但未指定的争论的数量。
cdecl输出你的小信仰:
cdecl> explain void (*f)(int(*[ ])());
declare f as pointer to function (array of pointer to function returning int) returning void
答案 2 :(得分:5)
是:
$ cdecl explain void (* x)(int (*[])()); declare x as pointer to function (array of pointer to function returning int) returning void
答案 3 :(得分:2)
void (*func)(blah);
是指向以blah
作为参数的函数的指针,其中blah
本身是int(*[ ])()
是一个函数指针数组。
答案 4 :(得分:2)
答案 5 :(得分:2)
Geordi
是一个C ++机器人,可以训练这个:
<litb> geordi: {} void (*func)(int(*[ ])());
<litb> geordi: -r << ETYPE_DESC(func)
<geordi> lvalue pointer to a function taking a pointer to a pointer to a nullary function
returning an integer and returning nothing
它可以做很多有用的事情,比如显示所有参数声明(事实上,这只是匹配原始C++
语法规则名称):
<litb> geordi: show parameter-declarations
<geordi> `int(*[ ])()`.
让我们朝着相反的方向去做:
<litb> geordi: {} int func;
<litb> geordi: make func a pointer to function returning void and taking array of pointer to
functions returning int
<litb> geordi: show
<geordi> {} void (* func)(int(*[])());
如果你问它,它会执行你给它的任何东西。如果你受过训练但只是忘记了一些可怕的括号规则,你也可以混合使用C ++和geordi风格的类型描述:
<litb> geordi: make func a (function returning void and taking (int(*)()) []) *
<geordi> {} void (* func)(int(*[])());
玩得开心!