开发平台(Platform): (Ex: Win10, Linux, ...)
Linux
编译器(Ex: GCC, clang, VC++...)+目标环境(跟开发平台不同的话需列出)
gcc version 7.4.0 (Ubuntu 7.4.0-1ubuntu1~18.04.1)
问题(Question):
test.h
#ifndef TEST_H_
#define TEST_H_
int test; /* 把变量定义写在.h */
void foo();
#endif
test1.c
#include "test.h"
void foo()
{
test = 5;
}
test2.c
#include "test.h"
int main()
{
foo();
printf("test = %d\n", test);
}
以上的程式码,如果使用gcc test1.c test2.c去编译
不会有任何错误或警告,会顺利的把执行档build出来
看起来执行结果好像也是对的
但如果是用g++ test1.c test2.c去编译就会错误:
/tmp/ccQ45lbS.o:(.bss+0x0): multiple definition of `test'
/tmp/ccEQnw6g.o:(.bss+0x0): first defined here
想请问的是:C语言用这样的写法是安全的吗?
如不考虑C++的相容性,有没有什么情况下会发生出乎意料的执行结果?
(换句话说,这样的写法会不会有隐藏什么地雷?)