当我遇到 lnk2005 错误时,我正在使用命名空间。我不知道如何解决这个错误。这是错误:
1>Source.obj : error LNK2005: "int Chart::Bars::d" (?d@Bars@Chart@@3HA) already defined in Chart.obj
1>Source.obj : error LNK2005: "class foo Chart::l" (?l@Chart@@3Vfoo@@A) already defined in Chart.obj
1>Source.obj : error LNK2005: "int Chart::t" (?t@Chart@@3HA) already defined in Chart.obj
1>C:\Users\bnm\dev\examples\play\nmspca\Debug\nmspca.exe : fatal error LNK1169: one or more multiply defined symbols found
1>
1>Build FAILED.
1>
1>Time Elapsed 00:00:00.49
========== Build: 0 succeeded, 1 failed, 0 up-to-date, 0 skipped ==========
这是代码...
图表.h
#pragma once
#include "foo.h"
namespace Chart
{
int t;
foo l;
namespace Bars
{
int d;
}
}
Foo.h
#pragma once
class foo
{
public:
int ss;
char* h;
};
图表.cpp
#include "Chart.h"
using namespace Chart;
int main ()
{
l.h = "g";
}
源.cpp
#include "Chart.h"
using namespace Chart;
int test()
{
l.ss = 0;
return l.ss;
}
当 Source.cpp 中的 #include "Chart.h" 被删除时,问题就消失了。但是,Source.cpp 需要 #include "Chart.h" 来定义命名空间。
在 Chart.cpp 和 Source.cpp 中表达“命名空间图表”的正确方法是什么,以便一切都能编译?