焦糖橙子 发表于 2018-5-15 08:36:35

指针调用函数的问题,编译出错

本帖最后由 焦糖橙子 于 2018-5-15 09:59 编辑

#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("Please enter a and b:");
    scanf("%d %d",&a,&b);
    printf("\n");

    printf("Max = ");
    process( a, b, max);

    printf("Min = ");
    process( a, b, min);

    printf("Add = ");
    process( a, b, add);

}

int max(int x,int y)
{
    int max = y;
    if(x>y)
    {
      max = x;
    }
    printf("%d\n",max);
}

int min(int x,int y)
{
    int min = y;
    if(x<y)
    {
      min = x;
    }
    printf("%d\n",min);
}
int add(int x,int y)
{
    int add;
    add=x+y;
    printf("%d\n",add);
}

void process(int x,int y,int(*fun)() )
{
    fun(x,y);
}


就是这段代码,没找到定义的Process是怎么回事啊??

alltolove 发表于 2018-5-15 08:59:56

void process(int x,int y,int(*fun)() );这个光声明了没有函数体啊

BngThea 发表于 2018-5-15 09:08:07

错误信息说的很清楚了,没有定义这个函数

风过无痕丶 发表于 2018-5-15 09:46:48

本帖最后由 风过无痕丶 于 2018-5-15 09:53 编辑

你是不是对函数指针有什么误解


#include<stdio.h>

// 函数声明
int max(int a, int b);
int min(int a, int b);
int add(int a, int b);

int main()
{        // 这里是声明函数指针!
        int(*process)(int x, int y);
        int a, b;

        printf("Please enter a and b:");
        scanf("%d %d", &a, &b);
        printf("\n");

        // 这里是给函数指针赋值!
        process = max;
        printf("Max = %d\n", process(a, b));

        process = min;
        printf("Min = %d\n", process(a, b));

        process = add;
        printf("Add = %d\n", process(a, b));

        return 0;
}

int max(int x, int y) {

        return x > y ? x : y;
}

int min(int x, int y) {

        return x < y ? x : y;

}

int add(int x, int y)
{
        int add;
        add = x + y;
        return add;
}

焦糖橙子 发表于 2018-5-15 10:00:44

谢谢各位大佬指正,已把函数改好,实现函数中的指针调用其他函数的功能{:10_254:}

焦糖橙子 发表于 2018-5-15 10:01:47

风过无痕丶 发表于 2018-5-15 09:46
你是不是对函数指针有什么误解

{:10_266:}刚开始学,对定义不是很了解,我会去多看看的,谢谢大佬

焦糖橙子 发表于 2018-5-15 10:02:33

alltolove 发表于 2018-5-15 08:59
void process(int x,int y,int(*fun)() );这个光声明了没有函数体啊

谢谢大佬{:10_266:}想到了

焦糖橙子 发表于 2018-5-15 10:03:21

BngThea 发表于 2018-5-15 09:08
错误信息说的很清楚了,没有定义这个函数

恩恩,我补上了{:10_266:}
页: [1]
查看完整版本: 指针调用函数的问题,编译出错