鱼C论坛

 找回密码
 立即注册
查看: 3995|回复: 2

void process()函数和result(*fun)()干嘛的?

[复制链接]
发表于 2013-2-16 21:04:33 | 显示全部楼层 |阅读模式

马上注册,结交更多好友,享用更多功能^_^

您需要 登录 才可以下载或查看,没有账号?立即注册

x
#include <stdio.h>
void main()
{
      int max(int, int);              /*函数声明*/
      int min(int, int);              /*函数声明*/
      int add(int, int);              /*函数声明*/
      void process( int x, int y, int(*fun)() );           /*函数声明 */
      int a, b;
      printf("Endter a and b: ");
      scanf("%d %d", &a, &b);
      printf("max = ");
      process(a, b, max);
      printf("min = ");
      process(a, b, min);
      printf("sum = ");
      process(a, b, add);
}
int max(int x, int y)
{
      int z;
      if(x > y)
      {
            z = x;
      }
      else
      {
            z = y;
      }
      return z;
}
int min(int x, int y)
{
      int z;
      if(x < y)
      {
            z = x;
      }
      else
      {
            z = y;
      }
      return z;
}
int add(int x, int y)
{
      int z;
      z = x + y;
      return z;
}
void process( int x, int y, int(*fun)() )
{
      int result;
      result = (*fun)(x,y);
      printf("%d\n", result);
}

void process()函数和result(*fun)()干嘛的?
想知道小甲鱼最近在做啥?请访问 -> ilovefishc.com
发表于 2013-2-17 00:06:13 | 显示全部楼层
函数指针呗~  
(*fun)() 和 x ,y 一样 是process函数的参数之一
类型都是int型  是一个地址(函数指针)
process函数每次都把接收到的函数地址(max min add)
去匹配相对应的函数  就相当于接口
然后再通过process调用相应的函数得到相应的结果
想知道小甲鱼最近在做啥?请访问 -> ilovefishc.com
发表于 2018-8-25 22:19:26 | 显示全部楼层
26process.cpp(20) : error C2664: 'process' : cannot convert parameter 3 from 'int (int,int)' to 'int (__cdecl *)(void)'
        None of the functions with this name in scope match the target type
E:\编程\C例子\26process.cpp(22) : error C2065: 'min' : undeclared identifier
E:\编程\C例子\26process.cpp(24) : error C2664: 'process' : cannot convert parameter 3 from 'int (int,int)' to 'int (__cdecl *)(void)'
        None of the functions with this name in scope match the target type
E:\编程\C例子\26process.cpp(41) : error C2373: 'min' : redefinition; different type modifiers
E:\编程\C例子\26process.cpp(62) : error C2197: 'int (__cdecl *)(void)' : too many actual parameters

为什么编译会出现这个情况呢!
想知道小甲鱼最近在做啥?请访问 -> ilovefishc.com
回复 支持 反对

使用道具 举报

您需要登录后才可以回帖 登录 | 立即注册

本版积分规则

小黑屋|手机版|Archiver|鱼C工作室 ( 粤ICP备18085999号-1 | 粤公网安备 44051102000585号)

GMT+8, 2024-11-30 07:33

Powered by Discuz! X3.4

© 2001-2023 Discuz! Team.

快速回复 返回顶部 返回列表