C语言中函数指针的概念?
可能的重复:
函数指针的意义是什么?
大家好,
我想了解 C 语言中函数指针的基本和具体概念。 即1)它在C中的用法 2)当前使用的主要应用程序 3)独特的功能 4)其范围在嵌入式应用等方面
也希望您的合作。
__卡努
Possible Duplicate:
What is the point of function pointers?
hi all,
I want to get the basic and concrete idea of function pointers in C language.
ie 1) its usage in C
2) main applications it is currently using
3) unique features
4) its scope in embedded applciations etc
Hoping your co operation in this too.
__Kanu
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
函数指针是指针,即变量,指向函数的地址。
很好的例子这里。另外这个答案是必读的。
Function Pointers are pointers, that is variables, which point to the address of a function.
Nice example here. Also this answer is a must read.