当前位置:网站首页>extern关键字
extern关键字
2022-07-06 14:40:00 【是北豼不太皮吖】
1.extern 可以置于变量或者函数前,以标示变量或者函数的定义在别的文件中,下面的代码用到的这些变量或函数是外来的,不是本文件定义的,提示编译器遇到此变量和函数时在其他模块中寻找其定义。就好比在本文件中给这些外来的变量或函数带了顶帽子,告诉本文件中所有代码,这些家伙不是土著。
C语言规定,如果在定义函数时省略extern,则默认为外部函数。
extern 修饰的变量或函数是定义还是声明?
答:是声明
A.c 文件中定义:
int i = 10;
void fun(void)
{
//code
}
B.c 文件中用 extern 修饰:
extern int i;
extern void fun(void);
2.至于 extern“C”的用法,一般认为属于 C++的范畴,这里就先不讨论。
extern "C"的主要作用就是为了能够正确实现C++代码调用其他C语言代码。加上extern "C"后,会指示编译器这部分代码按C语言的进行编译,而不是C++的。由于C++支持函数重载,因此编译器编译函数的过程中会将函数的参数类型也加到编译后的代码中,而不仅仅是函数名;而C语言并不支持函数重载,因此编译C语言代码的函数时不会带上函数的参数类型,一般之包括函数名。
这个功能十分有用处,因为在C++出现以前,很多代码都是C语言写的,而且很底层的库也是C语言写的,为了更好的支持原来的C代码和已经写好的C语言库,需要在C++中尽可能的支持C,而extern "C"就是其中的一个策略。
边栏推荐
- AI enterprise multi cloud storage architecture practice | Shenzhen potential technology sharing
- 做接口测试都测什么?有哪些通用测试点?
- [sciter bug] multi line hiding
- i.mx6ull搭建boa服务器详解及其中遇到的一些问题
- Report on technological progress and development prospects of solid oxide fuel cells in China (2022 Edition)
- Data storage (1)
- 在IPv6中 链路本地地址的优势
- Spatial domain and frequency domain image compression of images
- Data processing skills (7): MATLAB reads the data in the text file TXT with mixed digital strings
- Applet system update prompt, and force the applet to restart and use the new version
猜你喜欢

手写ABA遇到的坑
![[线性代数] 1.3 n阶行列式](/img/6e/54f3a994fc4c2c10c1036bee6715e8.gif)
[线性代数] 1.3 n阶行列式

GPS from getting started to giving up (XIII), receiver autonomous integrity monitoring (RAIM)

GPS从入门到放弃(十二)、 多普勒定速

(十八)LCD1602实验

Common sense: what is "preservation" in insurance?

2500 common Chinese characters + 130 common Chinese and English characters

UNI-Admin基础框架怎么关闭创建超级管理员入口?

Notes de développement du matériel (10): flux de base du développement du matériel, fabrication d'un module USB à RS232 (9): création de la Bibliothèque d'emballage ch340g / max232 SOP - 16 et Associa

3DMax指定面贴图
随机推荐
AI 企业多云存储架构实践 | 深势科技分享
Research and investment strategy report of China's VOCs catalyst industry (2022 Edition)
Data storage (1)
GPS from entry to abandonment (XVII), tropospheric delay
Management background --4, delete classification
小常识:保险中的“保全”是什么?
中国固态氧化物燃料电池技术进展与发展前景报告(2022版)
[sciter bug] multi line hiding
Memorabilia of domestic database in June 2022 - ink Sky Wheel
HDR image reconstruction from a single exposure using deep CNN reading notes
Powerful domestic API management tool
Unity3d Learning Notes 6 - GPU instantiation (1)
Attack and defense world miscall
Shortcut keys in the terminal
GPS from getting started to giving up (XI), differential GPS
2022-07-04 mysql的高性能数据库引擎stonedb在centos7.9编译及运行
Common sense: what is "preservation" in insurance?
GPS从入门到放弃(十四)、电离层延时
自制J-Flash烧录工具——Qt调用jlinkARM.dll方式
Wechat red envelope cover applet source code - background independent version - source code with evaluation points function