C语言 未曾知晓 获取函数地址,利用这个地址调用函数

#include <stdio.h>

typedef unsigned short	UNSIGNED16;
typedef unsigned char   UNSIGNED8;
typedef UNSIGNED16 (*DEMO_CYCLE)(void);

static UNSIGNED16 lp_demo(void);
static UNSIGNED16 ap_demo(void);
static UNSIGNED16 md_demo(void);
static UNSIGNED16 mixed_demo(void);

DEMO_CYCLE 	p_demo_cycle = NULL;
DEMO_CYCLE 	p_demo_cycle_group[4] = {lp_demo, ap_demo, md_demo, mixed_demo};
UNSIGNED8 	demo_type;

static UNSIGNED16 lp_demo(void)
{
	printf("lp_demo执行这里\n");
	return 0;
}
static UNSIGNED16 ap_demo(void)
{
	printf("ap_demo执行这里\n");
	return 0;
}
static UNSIGNED16 md_demo(void)
{
	printf("md_demo执行这里\n");
	return 0;
}
static UNSIGNED16 mixed_demo(void)
{
	printf("mixed_demo执行这里\n");
	return 0;
}

int main(int argc, char *argv[])
{
	UNSIGNED16  result = 0;
	printf("%d\n",demo_type);
        //获取函数地址
	p_demo_cycle = p_demo_cycle_group[demo_type];
        //利用函数地址调用函数
		result = (*p_demo_cycle)();
	return 0;
}

函数名字符串指针:利用函数地址调用函数.同时利用数组的形式.以更加方便的形式进行操作

转载于:https://my.oschina.net/u/198124/blog/58205

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值