extern C的作用

Posted hchacha

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了extern C的作用相关的知识,希望对你有一定的参考价值。

#ifdef __cplusplus extern "C" { #endif //一段代码 #ifdef __cplusplus } #endif

https://stackoverflow.com/questions/3789340/combining-c-and-c-how-does-ifdef-cplusplus-work

extern C告诉编译器,这段代码用C的方式编译和链接,C++可以调用这段代码

c中没有函数重载,c++编译的目标文件里函数名字和c处理方式编译是不一样的,要兼容c代码。

以上是关于extern C的作用的主要内容,如果未能解决你的问题,请参考以下文章

extern关键词的作用

c语言中的extern是啥,有啥作用啊?

extern C的作用

C extern 关键词分析

#ifdef __cplusplus extern “C“{ #endif的作用

extern C的作用具体解释