使用C++编程时,有时要用到第三方的库,而第一方库是以C给出的,奇怪的是明明已经把C文件加入工程,头文件也已经引入,编译里还是出现
undefined reference
问题在这里,第三方的C库的头文件没有加入extern "C",在C文件的头文件加入如下即可
#ifdef __cplusplus
extern "C" {
#endif
/* C头文件的其它声明 */
#ifdef __cplusplus
}
#endif /* end of __cplusplus */
时间: 2024-10-10 19:51:17