函数名,函数名取地址,函数名取值之间的区别

#include <stdio.h>
typedef void (*cfp_t)(int a);

cfp_t calls_table[3]={NULL,};

void test(int a)
{
    printf("test();\n");
}



int main(void)
{
    printf("************0**********\n");
    printf("test:%d\n",test);
    printf("&test:%d\n",&test);
    printf("*test:%d\n",*test);
    
    printf("************1**********\n");
    calls_table[0]=test;
    calls_table[0](5);
    printf("main();\n");
    printf("************2**********\n");
    calls_table[0]=&test;
    calls_table[0](5);
    printf("main();\n");
     printf("************3**********\n");
    calls_table[0]=*test;
    calls_table[0](5);
    printf("main();\n");
    printf("************4**********\n");
    calls_table[0]=test;
    (*calls_table[0])(5);
    printf("main();\n");
    printf("************5**********\n");
    calls_table[0]=&test;
    (*calls_table[0])(5);//执行
    printf("main();\n");
    printf("************6**********\n");
    (&test)(5);
    printf("************7**********\n");
    (*test)(5);
}

输出结果:

************0**********
test:4195709
&test:4195709
*test:4195709
************1**********
test();
main();
************2**********
test();
main();
************3**********
test();
main();
************4**********
test();
main();
************5**********
test();
main();
************6**********
test();
************7**********
test();


/usercode/file.cpp: In function ‘int main()’:
/usercode/file.cpp:16:30: warning: format ‘%d’ expects argument of type ‘int’, but argument 2 has type ‘void (*)(int)’ [-Wformat=]
     printf("test:%d\n",test);
                              ^
/usercode/file.cpp:17:32: warning: format ‘%d’ expects argument of type ‘int’, but argument 2 has type ‘void (*)(int)’ [-Wformat=]
     printf("&test:%d\n",&test);
                                ^
/usercode/file.cpp:18:32: warning: format ‘%d’ expects argument of type ‘int’, but argument 2 has type ‘void (*)(int)’ [-Wformat=]
     printf("*test:%d\n",*test);
                                ^

由输出结果:可知,函数名,函数名取地址,函数名取值之间可以随意替换。不像数组名,数组名取地址,数组名取值那样区别很大。

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值