码迷,mamicode.com
首页 > 其他好文 > 详细

C基础--函数指针

时间:2015-09-22 10:12:31      阅读:155      评论:0      收藏:0      [点我收藏+]

标签:

#include <stdio.h>

/*声明一个函数,函数名称的本质就是一个函数指针*/
int funcA(int a, int b)
{
    int c = a + b;
    printf("a = %d, b = %d \n", a, b);
    return c;
}

/*声明一个函数指针*/
/*注意,函数指针的类型要与其指向的函数原型相吻合*/
int (*p_funcA)(int, int);

int(*p_funcB)(int a);

int main(int argc, char** argv)
{
    funcA(3, 9);
    p_funcA = funcA; /*给函数指针赋值*/
    p_funcA(3, 9);  /*通过函数指针调用函数*/

    p_funcB = funcA;  /*类型不匹配,将会引发运行时错误*/

    /*以下写法全都是错误的!*/
    p_funcA = funcA(a, b);
    p_funcA = funcA(int, int);
    p_funcA = funcA(3,7);

    system("pause");
    return 0;
}

 

C基础--函数指针

标签:

原文地址:http://www.cnblogs.com/zhuyaguang/p/4828026.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!