typedef int (*funcptr)(); // funcptr is synonym for "pointer // to function returning int"
funcptr table[10]; // Equivalent to "int (*table[10])();"
三国纷争
浏览 99回答 2
2回答
红糖糍粑
typedef int (*funcptr)(); 这个的意思是:定义一个返回值为int,不带参数的函数指针,就是说funcptr 是 int (*)()型的指针funcptr table[10];定义一个数组,这个数组是funcptr类型的。就是说这个数组内的内容是一个指针,这个指针指向一个返回值为int,不带参数的函数