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

函数指针的一个的demo

时间:2015-08-21 15:25:31      阅读:132      评论:0      收藏:0      [点我收藏+]

标签:

#include <stdio.h>

typedef void (*fun_cb)(int a, int b);

static fun_cb exe_fun_cb;

void fun_cb_input(int, int);
void setUp_cb(fun_cb);

void main()
{
        setUp_cb(fun_cb_input);
}

void setUp_cb(fun_cb fun_cb_param)
{
        printf("\n ready to use callback \n");
        exe_fun_cb = fun_cb_param;
        if(exe_fun_cb)
        {
                exe_fun_cb(0, 0);
        }
}

void fun_cb_input(int param1, int param2)
{
        printf("\n this is a callback function!\n");
}

 运行结果:

技术分享

函数指针的一个的demo

标签:

原文地址:http://www.cnblogs.com/lweleven/p/funpointer_demo.html

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