pau*_*auk -1 c gcc pointers reference function
我知道有一个类似的话题,但这些答案并没有说明我想知道什么。因此,只要从下面的摘录中可以注意到一个函数和对该函数的引用的行为方式相同,那么同时拥有函数变量和函数指针又有什么意义呢?
#include <stdio.h>
int f(){ return 0;}
int main() {
printf("%p\n",f);
printf("%p\n",&f);
printf("%p\n",f + 1);
printf("%p\n",&f + 1);
return 0;
}
Run Code Online (Sandbox Code Playgroud)
此外, f 和 &f 都可以作为其他函数的参数传递。
f并且&f意思相同,所以没有必要使用&f.
但是语言设计者出于某种原因决定不让它无效,所以你有这个多余的语法。
| 归档时间: |
|
| 查看次数: |
132 次 |
| 最近记录: |