gpt4 book ai didi

c - 如何使用函数指针数组?

转载 作者:行者123 更新时间:2023-11-30 16:22:05 25 4
gpt4 key购买 nike

我应该如何在 C 中使用函数指针数组?

如何初始化它们?

最佳答案

你有一个很好的例子here (Array of Function pointers) ,与 syntax detailed .

int sum(int a, int b);
int subtract(int a, int b);
int mul(int a, int b);
int div(int a, int b);

int (*p[4]) (int x, int y);

int main(void)
{
int result;
int i, j, op;

p[0] = sum; /* address of sum() */
p[1] = subtract; /* address of subtract() */
p[2] = mul; /* address of mul() */
p[3] = div; /* address of div() */
[...]

调用这些函数指针之一:

result = (*p[op]) (i, j); // op being the index of one of the four functions

关于c - 如何使用函数指针数组?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/54574683/

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