Juniorboy 发表于 2020-5-21 21:40:38

函数指针和指针函数

int (*select(int))(int,int)
这个select函数的返回值是int(*)(int,int),那可不可以这样去理解,把select(int)看成一个变量,然后指向一个函数。这里没理解明白,求讲解。
我的想法是因为int *(int,int)是返回值,函数的格式不是 返回值+函数名+参数吗,然后我想给他写成(int(int,int)) *select (int)

永恒的蓝色梦想 发表于 2020-5-21 21:49:00

我只见过

int (*select)(int,int) 这样的

Juniorboy 发表于 2020-5-23 14:26:20

永恒的蓝色梦想 发表于 2020-5-21 21:49
我只见过

int (*select)(int,int) 这样的

小甲鱼老师视频里讲的

人造人 发表于 2020-5-23 17:10:51

c语言复杂声明解析
https://www.cnblogs.com/cdwodm/p/4136845.html

java2python 发表于 2020-5-24 15:50:48

本帖最后由 java2python 于 2020-5-24 15:54 编辑

按照4楼的帖子,试了试(函数名最好不要用select,疑似关键字):
#include <stdio.h>
#include <windows.h>

typedef int (*xfunc)(int,int);
typedef int (*xxfunc(int))(int,int);

int add11(int a,int b){
    return a+b;
}
int mul11(int a,int b){
    return a*b;
}
xfunc selx(int no) {
    xfunc func;
    if(no == 1) func = add11;
    else func = mul11;
    return func;
}

xxfunc *selxx(int no){
    xxfunc *func;
    func = selx;
    return func;
}

int main(){
    xfunc f1 = selx(1);
    printf("f1(3,5)=%d\n",f1(3,5));

    xxfunc *f3 = selxx(1);
    int x=(f3(1))(3,5);
    printf("(f3(1))(3,5)=%d\n",x);
    x=(f3(2))(3,5);
    printf("(f3(2))(3,5)=%d\n",x);
    system("pause");
    return 0;
}
页: [1]
查看完整版本: 函数指针和指针函数