gpt4 book ai didi

c - 函数名称前的星号是什么意思?

转载 作者:太空狗 更新时间:2023-10-29 15:20:35 24 4
gpt4 key购买 nike

下面几行代码中,dup_func、free_func、clear_free func前面的星号是做什么用的?

void *(*dup_func)(void *);
void (*free_func)(void *);
void (*clear_free_func)(void *);

最佳答案

在您的示例中,这意味着它们是 function pointers .

简而言之,它们允许您执行以下操作:

void example()
{
printf("Example called!\n");
}

void call_my_function(void (*fun)())
{
printf("Calling some function\n");
(*fun)();
}

/* Later. */
call_my_function(example);

关于c - 函数名称前的星号是什么意思?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/6693970/

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