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

函数指针的用法。

时间:2020-03-03 17:49:52      阅读:79      评论:0      收藏:0      [点我收藏+]

标签:turn   lin   print   %s   clu   sys   sum   std   lib   

#include <stdlib.h>
#include <stdio.h>
#include <unistd.h>
#include <sys/types.h>

typedef int (*funtcb)(void);

int functa(void)
{
printf("%s %d \n",func,LINE);
return 0;
}

int add(int a, int b )
{
int sum;
typeof(sum) t;
t = sum = a+b;
printf("[%s %d] sum %d \n",func,LINE,a+b);
return a+b;
}
int main(void)
{
{
funtcb p = functa;
p();
}
{
funtcb p2 = functa;
(p2)();
}
{
funtcb pp = &functa;
pp();
}
{
funtcb p3 = &functa;
(
p3)();
}
{
void pv = NULL;
pv = functa;
((funtcb)pv)();
}
{
void
pv2 = NULL;
pv2 = add;
(( int ()(int, int) )pv2)(3,3);
}
//typeof(一个函数的类型。
{
void
pv2 = NULL;
pv2 = add;
(( typeof(&add) )pv2)(3,3);
}
return 0;
}

函数指针的用法。

标签:turn   lin   print   %s   clu   sys   sum   std   lib   

原文地址:https://blog.51cto.com/yaxinsn/2475071

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