gpt4 book ai didi

c - 如何将函数作为参数传递?

转载 作者:行者123 更新时间:2023-12-02 07:05:42 25 4
gpt4 key购买 nike

怎么可能给一个函数(B)一个函数(A)作为参数呢?

这样我就可以在函数B中使用函数A了。

比如下面例子中的变量B:

foo(int B) { ... }

最佳答案

通过使用函数指针。例如,查看 qsort() 标准库函数。

例子:

#include <stdlib.h>

int op_add(int a, int b)
{
return a + b;
}

int operate(int a, int b, int (*op)(int, int))
{
return op(a, b);
}

int main(void)
{
printf("12 + 4 is %d\n", operate(12, 4, op_add));

return EXIT_SUCCESS;
}

将打印12 + 4 is 16

操作作为指向函数的指针给出,该函数在 operate() 函数中调用。

关于c - 如何将函数作为参数传递?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/12404595/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com