我这里有世界上最简单的程序。我想你们中的一些人只需要一秒钟就可以找出问题所在。
富.h:
#ifndef FOO_H
#define FOO_H
namespace foo
{
char str[ 20 ];
void bar(char* s);
}
#endif
foo.cpp:
#include "foo.h"
using namespace std;
namespace foo
{
void bar(char* s) {
return;
}
}
foo_main.cpp:
#include "foo.h"
using namespace std;
using namespace foo;
int main(void)
{
bar( str );
}
现在,当我尝试将这三个编译在一起时:
g++ foo_main.cpp foo.cpp -o foo
/tmp/cc22NZfj.o:(.bss+0x0): multiple definition of `foo::str'
/tmp/ccqMzzmD.o:(.bss+0x0): first defined here
collect2: ld returned 1 exit status
我想在命名空间 foo 中使用 str 作为全局变量,因此需要将其保留在那里。如果我将我的 main 方法移动到 foo.cpp 中,那么一切都可以正常编译。如果我想将我的主要方法留在一个单独的文件中,我该怎么办?如您所见,我什至在 .h 文件中添加了包含保护,这样就不会与 str 发生冲突,但似乎不起作用。怎么了?