我最近在读代码,发现函数指针写成:
int (*fn_pointer ( this_args ))( this_args )
我经常遇到像这样的函数指针:
return_type (*fn_pointer ) (arguments);
类似的事情被讨论here:
// this is a function called functionFactory which receives parameter n
// and returns a pointer to another function which receives two ints
// and it returns another int
int (*functionFactory(int n))(int, int) {
printf("Got parameter %d", n);
int (*functionPtr)(int,int) = &addInt;
return functionPtr;
}
有人可以告诉我有什么区别,这是如何运作的?
答案 0 :(得分:10)
int (*fn_pointer ( this_args ))( this_args );
将fn_pointer
声明为一个函数,它接受this_args
并返回一个指向函数的指针,该函数将this_args
作为参数并返回int
类型。它相当于
typedef int (*func_ptr)(this_args);
func_ptr fn_pointer(this_args);
让我们更多地了解它:
int f1(arg1, arg2); // f1 is a function that takes two arguments of type
// arg1 and arg2 and returns an int.
int *f2(arg1, arg2); // f2 is a function that takes two arguments of type
// arg1 and arg2 and returns a pointer to int.
int (*fp)(arg1, arg2); // fp is a pointer to a function that takes two arguments of type
// arg1 and arg2 and returns a pointer to int.
int f3(arg3, int (*fp)(arg1, arg2)); // f3 is a function that takes two arguments of
// type arg3 and a pointer to a function that
// takes two arguments of type arg1 and arg2 and
// returns an int.
int (*f4(arg3))(arg1, arg2); // f4 is a function that takes an arguments of type
// arg3 and returns a pointer to a function that takes two
// arguments of type arg1 and arg2 and returns an int
How to read int (*f4(arg3))(arg1, arg2);
f4 -- f4
f3( ) -- is a function
f3(arg3) -- taking an arg3 argument
*f3(arg3) -- returning a pointer
(*f3(arg3))( ) -- to a function
(*f3(arg3))(arg1, arg2) -- taking arg1 and arg2 parameter
int (*f3(arg3))(arg1, arg2) -- and returning an int
所以,最后一个家庭工作:)。试着找出声明
void (*signal(int sig, void (*func)(int)))(int);
并使用typedef
重新定义它。
答案 1 :(得分:4)
从cdecl(这是一个方便的帮助工具来解密C声明):
int (*fn_pointer ( this_args1 ))( this_args2 )
声明fn_pointer为函数(this_args1)返回指针 function(this_args2)return int
因此前者是一个函数,它返回指向函数的指针,而后者是:
return_type (*fn_pointer ) (arguments);
是一个普通的“函数指针”。
从Clockwise/Spiral Rule文章中了解有关未完成复杂声明的更多信息。
答案 2 :(得分:2)
此
int (*fn_pointer ( this_args1 ))( this_args2 )
声明一个带有参数this_args1
的函数,并返回一个类型为
int (*fn_pointer)(this_args2)
所以它只是一个返回函数指针的函数。