6

c++ での乗算宣言に問題がありますが、c では問題がありません。詳細については、コードを参照してください。

ファイル main.c

#ifndef VAR
#define VAR
int var;
#endif
int main(){}

ファイル other.c

#ifndef VAR
#define VAR
int var;
#endif

gccでコンパイル

gcc main.c other.c
>> success

g++ でコンパイルする

g++ main.c other.c
Output:
/tmp/ccbd0ACf.o:(.bss+0x0): multiple definition of `var'
/tmp/cc8dweC0.o:(.bss+0x0): first defined here
collect2: ld returned 1 exit status

私のgccとg ++のバージョン:

gcc --version
gcc (Ubuntu/Linaro 4.6.3-1ubuntu5) 4.6.3
Copyright (C) 2011 Free Software Foundation, Inc.
This is free software; see the source for copying conditions.  There is NO
warranty; not even for MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.

g++ --version
g++ (Ubuntu/Linaro 4.6.3-1ubuntu5) 4.6.3
Copyright (C) 2011 Free Software Foundation, Inc.
This is free software; see the source for copying conditions.  There is NO
warranty; not even for MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
4

4 に答える 4