有趣的是,使用函数名称作为函数指针等同于将address-of运算符应用于函数名称!
这是例子。
typedef bool (*FunType)(int);
bool f(int);
int main() {
FunType a = f;
FunType b = &a; // Sure, here's an error.
FunType c = &f; // This is not an error, though.
// It's equivalent to the statement without "&".
// So we have c equals a.
return 0;
}
使用名称是我们在数组中已经知道的东西。但是你不能写这样的东西
int a[2];
int * b = &a; // Error!
它似乎与语言的其他部分不一致。这种设计的原理是什么?
这个问题解释了这种行为的语义及其起作用的原因。但是我对为什么用这种方式设计语言感兴趣。
更有趣的是,函数类型在用作参数时可以隐式转换为指向自身的指针,但是在用作返回类型时,不会转换为指向自身的指针!
例:
typedef bool FunctionType(int);
void g(FunctionType); // Implicitly converted to void g(FunctionType *).
FunctionType h(); // Error!
FunctionType * j(); // Return a function pointer to a function
// that has the type of bool(int).
慕桂英546537
慕容森
相关分类