全局变量不能定义在“被多个.c文件引用的.h文件”中

转自: https://blog.csdn.net/basstal/article/details/52275191

全局变量global定义在头文件中,因为所有定义预设为外部链接,所以在头文件被.c文件包含以后,等于有两个或更多同等定义的global存在于不同的翻译单元,编译器发现不了错误,因为编译器每次是以翻译单元运作的。但是,链接器会在解析交叉引用时报告“符号被多重定义”错误。

//DefineGlobal.h
int global;
//GlobalTest1.c
#include "DefineGlobal.h"
//GlobalTest2.c
#include "DefineGlobal.h"
E:\cpp\牛客网>g++ -std=c++11 DefineGlobal.h GlobalTest1.c GlobalTest2.c
C:\Users\\AppData\Local\Temp\ccseJhV1.o:GlobalTest2.c:(.bss+0x0): multiple definition of `global'
C:\Users\\AppData\Local\Temp\cccqfbA0.o:GlobalTest1.c:(.bss+0x0): first defined here
  • 当把(所谓的)全局变量global定义为static时,由于static使定义的变量称为内部链接,所以在各个.c文件中,存在多个同名global但不同等的定义,每个翻译单元中的global维持自己的内存区域,此时链接器不会报告“符号被多重定义”错误。
//DefineGlobal.h
#ifndef DEFINEGLOBAL_H
#define DEFINEGLOBAL_H

static int global;

#endif
//GlobalTest1.c
#include <iostream>
#include "DefineGlobal.h"

void print1()
{
    global = 1;
    std::cout<<"print1 : "<<global<<std::endl;
}
//GlobalTest2.c
#include <iostream>
#include "DefineGlobal.h"


void print2()
{
    std::cout<<"print2 : "<<global<<std::endl;
    global = 2;
    std::cout<<"print2 : "<<global<<std::endl;

}
//GlobalMain.c
extern void print1();
extern void print2();

int main()
{
    print1();
    print2();

    return 0;
}
//输出
print1 : 1
print2 : 0
print2 : 2
  • 此时,(所谓的)全局变量并没有达到一般意义上全局变量的效果,相当于每个翻译单元的局部变量。

结论: 

全局变量不能定义在被多个.c文件包含的头文件中


在某.c文件中声明的全局变量需要在其他.c文件中使用时,可以使用extern关键字。


评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值