作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
怎么可能给一个函数(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/
我是一名优秀的程序员,十分优秀!