C++中extern关键字使用(转)

参考文章:http://blog.csdn.net/sruru/article/details/7951019

chapter1、如何混合编译C语言和C++

实际开发过程中,C++中会调用C与语言编写的代码,我在网络上面找到一篇写得很好的文章

http://blog.csdn.net/keensword/article/details/401114

方法一、全局函数和变量在devVar.c文件中实现,在extern.cpp文件中使用extern关键字声明在devVar.c文件中定义的函数和变量。

devVar.c文件的代码如下所示:

  1. #include <stdio.h>
  2. int i = 1;
  3. void func()
  4. {
  5. printf("%d",i++);
  6. }

extern.cpp文件中代码如下所示:

  1. #include "stdafx.h"
  2. #include <stdio.h>
  3. #include <iostream>
  4. using namespace std;
  5. //#include "devVar.h"
  6. //extern int i;
  7. //extern void func();
  8. extern "C"
  9. {
  10. extern int i;
  11. extern void func();
  12. //#include "devVar.h"
  13. }
  14. int main(void)
  15. {
  16. for (int x = 0;x < 10; x++)
  17. {
  18. func();
  19. }
  20. }

所以在C++文件中编译C文件需要使用extern "C"关键字,声明语法如下所示

extern "C"

{

采用C语言实现的内容

}

方法二、

在devVar.h文件中实现C代码(即devVar.h作为C语言头文件),在.cpp文件中包含C语言头文件。

devVar.h头文件内容为:

  1. #include <stdio.h>
  2. int i = 1;
  3. void func()
  4. {
  5. printf("%d",i++);
  6. }

extern.cpp文件内容如下所示

  1. #include "stdafx.h"
  2. #include <stdio.h>
  3. #include <iostream>
  4. using namespace std;
  5. //#include "devVar.h"
  6. //extern int i;
  7. //extern void func();
  8. extern "C"
  9. {
  10. //extern int i;
  11. //extern void func();
  12. #include "devVar.h"
  13. }
  14. int main(void)
  15. {
  16. for (int x = 0;x < 10; x++)
  17. {
  18. func();
  19. }
  20. }

其中,包含C语言头文件的方式为:

 

  1. extern "C"
  2. {
  3. //extern int i;
  4. //extern void func();
  5. #include "devVar.h"
  6. }

写到这里,楼主又产生了一个疑问,上面的例子讲的是C++调用C实现的代码,那如果是C调用C++编写的代码呢?

楼主作了如下改动:

devVar.cpp代码为:

  1. #include <stdio.h>
  2. int i = 1;
  3. void func()
  4. {
  5. printf("%d",i++);
  6. }

extern.c文件代码为

  1. #include <stdio.h>
  2. extern int i;
  3. extern void func();
  4. int main(void)
  5. {
  6. int x = 0;
  7. for (;x < 10; x++)
  8. {
  9. func();
  10. }
  11. }

单独编译每个文件都通过,链接声称可执行文件的时候报错:

1>extern.obj : error LNK2019: unresolved external symbol _func referenced in function _main,说明.c文件中extern void func(),按照C编译的规则,得到函数_func,而devVar.cpp文件采用C++编译方式,得到的函数为XX·!_func(具体楼主也不知道哈),这样链接的时候函数自然找不到,那怎么解决呢?

需要在devVar.cpp中,明确调用extern "C"关键字,声明cpp文件中有关代码,需要按照C的方式来生成,修改devVar.cpp文件如下所示:

  1. #include <stdio.h>
  2. int i = 1;
  3. extern "C" void func()
  4. {
  5. printf("%d",i++);
  6. }

此时,除了需要使用extern "C"声明编译的时候采用C方式编译外,.cpp文件中的代码可以按照C++方式编写,例如

devVar.cpp按照下面方式写,也是正确的。

  1. #include "stdafx.h"
  2. #include <iostream>
  3. using namespace std;
  4. int i = 1;
  5. extern "C" void func()
  6. {
  7. cout << "i = " << i++ << endl;

chapter 2 . extern关键字的作用

extern是一个关键字,它告诉编译器存在着一个变量或者一个函数,如果在当前编译语句的前面中没有找到相应的变量或者函数,也会在当前文件的后面或者其它文件中定义,来看下面的例子。

  1. // extern.cpp : Defines the entry point for the console application.
  2. //
  3. #include "stdafx.h"
  4. #include <iostream>
  5. using namespace std;
  6. extern int i;
  7. extern void func();
  8. int _tmain(int argc, _TCHAR* argv[])//typedef wchar_t     _TCHAR;#define _tmain      wmain
  9. {
  10. i = 0;
  11. func();
  12. return 0;
  13. }
  14. int i;
  15. void func()
  16. {
  17. i++;
  18. cout << "i = " << i << endl;
  19. }

上面代码中变量i和函数func在文件末尾定义,所以变量需要使用extern关键字告诉编译器,变量在别的地方定义。extern int i我原来以为extern i就可以,结果编译器报错,仔细想下确实应该,否则编译器不知道i是什么类型的数据,又怎么能判断i = 0是否是一个正确的赋值语句呢?

那么定义在其他文件中的函数和变量,如何通过extern关键字调用呢?

首先,定义在其它文件中的函数和变量,可以使用两种方法调用:

一、使用头文件调用,这时候,函数和变量必须在头文件中定义和声明。

二、使用extern关键字调用,这时候函数和变量在.cpp或者.c文件中定义和声明。

看下面两个例子:

devVar.cpp函数中定义:

  1. #include "stdafx.h"
  2. int i;

extern.cpp中


  1. // extern.cpp : Defines the entry point for the console application.
  2. //
  3. #include "stdafx.h"
  4. #include <iostream>
  5. using namespace std;
  6. extern int i;
  7. extern void func();
  8. int _tmain(int argc, _TCHAR* argv[])//typedef wchar_t     _TCHAR;#define _tmain      wmain
  9. {
  10. i = 0;
  11. func();
  12. return 0;
  13. }
  14. void func()
  15. {
  16. i++;
  17. cout << "i = " << i << endl;
  18. }

编译工程,程序输出:i = 1,这里使用extern关键字声明在其它cpp文件中定义的变量和函数。

#include <filensme> --- 将filename文件中的内容插入到新的文件中。

deVar.h文件中代码为


  1. #include <stdio.h>
  2. int i = 1;
  3. void func()
  4. {
  5. printf("%d",i++);
  6. }

函数func修改全局变量i的值并输出。

extern.cpp文件内容为:


  1. #include "stdafx.h"
  2. #include <stdio.h>
  3. #include <iostream>
  4. using namespace std;
  5. #include "devVar.h"
  6. //extern int i;
  7. //extern void func();
  8. int main(void)
  9. {
  10. for (int x = 0;x < 10; x++)
  11. {
  12. func();
  13. }
  14. }

程序输出1,2,3,4,5,6,7,8,9,10,这里#include <filname.h> 包含定义在其它头文件中的函数和变量,在来看一个例子。


  1. // extern.cpp : Defines the entry point for the console application.
  2. //
  3. #include "stdafx.h"
  4. #include <iostream>
  5. using namespace std;
  6. extern int i;
  7. extern int  func(int);//这里extern必需的,函数定义在其它cpp文件中


  1. int _tmain(int argc, _TCHAR* argv[])//typedef wchar_t     _TCHAR;#define _tmain      wmain
  2. {
  3. i = 100;
  4. func(i);
  5. return 0;
  6. }

devVar.cpp文件中内容为:

  1. #include "stdafx.h"
  2. #include <iostream>
  3. using namespace std;
  4. int i;
  5. int func(int a)
  6. {
  7. i = a;
  8. cout << "i = " << i << endl;
  9. return 0;
  10. }

这样,同样是输出了i= 100。

能够使用extern引用其它cpp文件中定义的函数说明了一个问题:

如果一个工程现编译cpp文件,在把多个目标文件链接成为可执行文件,而两个或多个文件中,定义了相同的全局变量,那么,程序编译的时候不会报错,因为编译器单独编译每个文件,在链接可执行文件的时候,由于多个目标文件中含有相同的全局变量,而生成可执行文件的时候,任何文件中定义的全局变量对其它目标文件都是可见的,此时由于变量定义冲突而发生错误。看下面的代码:


  1. // extern.cpp : Defines the entry point for the console application.
  2. //
  3. #include "stdafx.h"
  4. #include <iostream>
  5. using namespace std;
  6. int i;
  7. extern int  func(int);//这里extern是必须的函数定义在别的cpp文件中
  8. int _tmain(int argc, _TCHAR* argv[])//typedef wchar_t     _TCHAR;#define _tmain      wmain
  9. {
  10. i = 100;
  11. func(i);
  12. return 0;
  13. }

devVar.cpp文件中,内容为:


  1. #include "stdafx.h"
  2. #include <iostream>
  3. using namespace std;
  4. int i;
  5. int func(int a)
  6. {
  7. i = a;
  8. cout << "i = " << i << endl;
  9. return 0;
  10. }

单独compile任何一个cpp文件都是对的,但是 编译工程,生成可执行文件的时候报错:

1>LINK : D:\vctest\extern\Debug\extern.exe not found or not built by the last incremental link; performing full link
1>devVar.obj : error LNK2005: "int i" ([email protected]@3HA) already defined in extern.obj
1>D:\vctest\extern\Debug\extern.exe : fatal error LNK1169: one or more multiply defined symbols found

原因是:两个.cpp文件中都定义了全局变量i,变量重复定义了。

PS:定义在.h文件中的函数和变量不能使用extern变量声明,原因是#include <filename>在预编译的时候将.h文件中的内容插入了cpp文件中,因此编译器找得到在其它.h文件中定义的变量或者函数。编译的时候,只编译cpp文件的内容,.h文件时不参与编译,如果使用extern声明在.h文件中定义的变量或者函数,那么声明为extern的变量和函数在其它.cpp文件中找不到,因此程序编译的时候就发生了错误。

时间: 2024-10-08 05:07:09

C++中extern关键字使用(转)的相关文章

C/C++中extern关键字详解

1 基本解释:extern可以置于变量或者函数前,以标示变量或者函数的定义在别的文件中,提示编译器遇到此变量和函数时在其他模块中寻找其定义.此外extern也可用来进行链接指定. 也就是说extern有两个作用,第一个,当它与"C"一起连用时,如: extern "C" void fun(int a, int b);则告诉编译器在编译fun这个函数名时按着C的规则去翻译相应的函数名而不是C++的,C++的规则在翻译这个函数名时会把fun这个名字变得面目 全非,可能是

【转载】理解C语言中的关键字extern

原文:理解C语言中的关键字extern 最近写了一段C程序,编译时出现变量重复定义的错误,自己查看没发现错误.使用Google发现,自己对extern理解不透彻,我搜到了这篇文章,写得不错.我拙劣的翻译了一下.(原文:http://www.geeksforgeeks.org/understanding-extern-keyword-in-c/)   我确定这篇文章对c语言的初学者会有很大的帮助,因为这将使他们更好更熟练的使用c语言.所以就让我先来说说extern关键字在变量和函数上的应用.最基本

C语言中的 extern 关键字

今天在 BLE 中看到很多 extern 关键字,现在总结一下: extern 关键字主要用于在一个c文件中要用到另一个c文件中的变量或者函数. example: 1 #extern_base.c 2 3 int a = 100; 1 #extern.h 2 3 extern int a; 1 #extern.c 2 3 #include <stdio.h> 4 #include "extern.h" 5 6 int main() 7 { 8 printf("%d

iOS 中 const static extern 关键字总结

在看一些高手所写的代码时,总是可以看到我们小白平常不用的关键字,一次,两次,三次,不能总是不明不白,现在总结一下日常开发中常用的关键字的作用: 关键字const/static/extern的释义和用法 1. const 这个单词翻译成中文就是 "常量"的意思.在程序中我们知道常量的值是不能变的,固定的.所以const关键字的作用就是: (1) const用来修饰右边的基本变量或指针变量 (2)被修饰的变量只读,不能被修改 下面举一个简单的例子: //声明一个int类型的变量a 初始化值

c/c++中static与extern关键字介绍

一.C语言中的static关键字 在C语言中,static可以用来修饰局部变量,全局变量以及函数.在不同的情况下static的作用不尽相同. (1)修饰局部变量 一般情况下,对于局部变量是存放在栈区的,并且局部变量的生命周期在该语句块执行结束时便结束了.但是如果用static进行修饰的话,该变量便存放在静态数据区,其生命周期一直持续到整个程序执行结束.但是在这里要注意的是,虽然用static对局部变量进行修饰过后,其生命周期以及存储空间发生了变化,但是其作用域并没有改变,其仍然是一个局部变量,作

转载 浅谈C/C++中的static和extern关键字

浅谈C/C++中的static和extern关键字 2011-04-21 16:57 海子 博客园 字号:T | T static是C++中常用的修饰符,它被用来控制变量的存贮方式和可见性.extern "C"是使C++能够调用C写作的库文件的一个手段,如果要对编译器提示使用C的方式来处理函数的话,那么就要使用extern "C"来说明.本文主要介绍C/C++中的static和extern关键字. AD: static是C++中常用的修饰符,它被用来控制变量的存贮方

浅谈C/C++中的static和extern关键字 转

原文:http://developer.51cto.com/art/201104/256820.htm static是C++中常用的修饰符,它被用来控制变量的存贮方式和可见性.extern, "C"是使C++能够调用C写作的库文件的一个手段,如果要对编译器提示使用C的方式来处理函数的话,那么就要使用extern "C"来说明. 一.C语言中的static关键字 在C语言中,static可以用来修饰局部变量,全局变量以及函数.在不同的情况下static的作用不尽相同.

19-C语言static和extern关键字2-对变量的作用

一.在Java中,全局变量的定义没有严格的位置规定 全局变量可以定义在类的最前面,也可以定义在类的最尾端,也就说一个方法可以访问在它之后定义的变量. 可以看到,第4行定义的test方法可以访问第8行定义的变量a,这是完全没有问题的. 二.在C语言中,全局变量定义的位置是有限制的 默认情况下,一个函数不可以访问在它后面定义的全局变量 在第4行定义的main函数中尝试访问第9行定义的变量a,编译器直接报错了. 解决这个错误的话,有2种办法: 第1种办法:将变量a定义在main函数的前面 这样做编译器

c++中const关键字全面总结

一.const作用 1.const定义常量 注意:const只对它左边的东西起作用,唯一的例外就是const本身就是最左边的修饰符,那么它才会对右边的东西起作用. (1)const修饰变量,以下两种定义形式在本质上是一样的.它的含义是:const修饰的类型为TYPE的变量value是不可变的. TYPE const ValueName = value; const TYPE ValueName = value; (2)将const改为外部连接,作用于扩大至全局,编译时会分配内存,并且可以不进行初