带参数的回调
我试图弄清楚如何在 C 中使用带参数的回调。以下内容不起作用。归档它的最佳方法是什么? (为回调函数传递参数)
#include <stdio.h>
void caller(int (*cc)(int a)) {
cc(a);
}
int blub(int a) {
printf("%i", a);
return 1;
}
int main(int argc, char** argv)
{
caller(blub(5));
return 1;
}
Im trying to figure out how to use callbacks with parameters in C. The following isnt working. What is the best way to archieve it? (passing arguments for the callback function)
#include <stdio.h>
void caller(int (*cc)(int a)) {
cc(a);
}
int blub(int a) {
printf("%i", a);
return 1;
}
int main(int argc, char** argv)
{
caller(blub(5));
return 1;
}
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
您是在传递函数之前进行调用,而不是传递回调函数本身。试试这个:
You are doing the call before passing the function, not passing the callback function itself. Try this:
caller
需要一个函数指针,而您给它一个整数。您只需要caller(blub)
。另外
int (*cc)(int a)
也是无效语法。可能是最接近您可以工作的代码的东西。
caller
expects a function pointer and you're giving it an integer. You need justcaller(blub)
.Also
int (*cc)(int a)
is invalid syntax.Is probably the closest thing to your code which could work.