函数指针

复制代码
#include <stdio.h>
int testfunc(void)
{
    printf("just test\n");
    return 5;
}

int main()
{
    int (*ptr)(void);
    ptr = testfunc;
    int c = (*ptr)();
    printf("%d\n",c);
    return 0;
}
复制代码

1.函数testfunc与普通函数定义相同

2.函数指针*ptr,类型与函数类型相同,后面括号中与函数参数类型相同

3.为函数指针ptr赋值为testfunc,则使用*ptr相当于testfunc,所以后面必须加()

posted @   朋克  阅读(171)  评论(0编辑  收藏  举报
努力加载评论中...
点击右上角即可分享
微信分享提示