码迷,mamicode.com
首页 > 编程语言 > 详细

C语言 函数指针定义三种方式

时间:2016-07-06 23:06:45      阅读:172      评论:0      收藏:0      [点我收藏+]

标签:

//函数指针
#include<stdio.h>
#include<stdlib.h>
#include<string.h>

//函数指针类型跟数组类型非常相似

//函数名就是函数的地址,函数的指针,对函数名进行&取地址操作,还是函数名本身,这是C语言编译器的特殊处理
void test(int a){
    printf("a=%d\n",a);
}

void ProtectA(){
    //定义函数类型
    typedef void(FunType)(int);
    FunType *ft = test;
    FunType *ft2 = &test;
    //这两种赋值方式的结果完全一样
    ft(1);
    ft2(2);
    
    //定义函数指针类型
    typedef void(*PFun)(int);
    PFun pf = test;
    pf(3);

    //定义函数指针变量
    void(*pf2)(int) = test;
    pf2(4);
}

void main(){
    ProtectA();
    system("pause");
}

技术分享

C语言 函数指针定义三种方式

标签:

原文地址:http://www.cnblogs.com/zhanggaofeng/p/5648181.html

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