经常在C语言的头文件中看到下面的代码:
#ifdef__cplusplus extern"C"{ #endif //allofyourlegacyCcodehere #ifdef__cplusplus } #endif
这通常用于C++和C混合编程的时候,为了防止C++的编译器在编译C文件的时候出现错误;众所周知,C++可以进行函数名重载,但是C则没有这种功能,那这和extern "C"又有什么关系呢?
先看下面这个表格,如下所示;
未添加 extern "C"
test.h
#ifndefTEST_H #defineTEST_H voidfoo1(void); voidfoo2(void); voidfoo3(inti); #endif
test.c
voidfoo1(void){} voidfoo2(void){} voidfoo3(inti){} intmain(intargc,char**argv){ foo1(); foo2(); foo3(1); return0; }
编译这两个文件,生成test.o文件,通过objdump查看函数符号;
g++-ctest.ctest.h objdump-ttest.o
可以看到函数符号已经被编译器修改了;
添加extern "C"
test.h
#ifndefTEST_H #defineTEST_H #ifdef__cplusplus extern"C"{ #endif voidfoo1(void); voidfoo2(void); voidfoo3(inti); #ifdef__cplusplus } #endif #endif
test.c
#ifdef__cplusplus extern"C"{ #endif voidfoo1(void){} voidfoo2(void){} voidfoo3(inti){} #ifdef__cplusplus } #endif intmain(intargc,char**argv){ foo1(); foo2(); foo3(1); return0; }
编译这两个文件,生成test.o文件,通过objdump查看函数符号;
g++-ctest.ctest.h objdump-ttest.o
这时候函数符号是正确的;
extern "C"是告诉C++的编译器不要打我这些C函数的主意。
-
C语言
+关注
关注
180文章
7597浏览量
136117
原文标题:长见识:你真的知道C语言里extern "C" 的作用吗?
文章出处:【微信号:gh_c472c2199c88,微信公众号:嵌入式微处理器】欢迎添加关注!文章转载请注明出处。
发布评论请先 登录
相关推荐
评论