作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我正在做一个涉及动态加载共享库的 C 练习。当我使用 gcc -o test2 test2.c -ldl
命令编译测试程序时,出现错误:
test2.c: In function ‘main’:
test2.c:27:5: error: too many arguments to function ‘test’
(*test)(array, size);
这是我收到错误的地方:
void (*test)(void);
test = dlsym(handle, "lib_fill_random");
(*test)(array, size);
lib_fill_random
在 .h 和 .c 文件中均使用两个参数声明为 void lib_fill_random(double *array, int size);
,并且它工作得很好就其本身而言。
什么可能导致此问题?
最佳答案
函数指针声明必须与实际函数的声明匹配。所以应该是:
void (*test)(double *, int);
您的声明声明该函数不带参数,因此当您使用参数调用它时会出现错误。
关于c - dlsym - "Too many arguments to function"错误,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/42201129/
我是一名优秀的程序员,十分优秀!