在全局范围内声明它时发生命名空间错误

时间:2012-07-27 11:04:35

标签: c++ multiple-definition-error

我有3个文件Test.h,Test.cpp和main.cpp

Test.h

#ifndef Test_H
#define Test_H
 namespace v
{
    int g = 9;;
    }
class namespce
{
public:
    namespce(void);
public:
    ~namespce(void);
};
#endif

Test.cpp的

   #include "Test.h"


namespce::namespce(void)
{
}

namespce::~namespce(void)
{
}

Main.cpp的

#include <iostream>
using namespace std;
#include "Test.h"
//#include "namespce.h"


int main ()
{

    return 0;

}

在构建过程中出现以下错误..

1>namespce.obj : error LNK2005: "int v::g" (?g@v@@3HA) already defined in main.obj
1>C:\Users\E543925\Documents\Visual Studio 2005\Projects\viku\Debug\viku.exe : fatal error LNK1169: one or more multiply defined symbols found

尽快帮助..

2 个答案:

答案 0 :(得分:3)

您只想让每个人访问g的一个实例吗? 在标题中,使用

extern int g; // declaration

在Test.cpp中,放

int v::g = 9; //definition

答案 1 :(得分:2)

您有两种选择:

静态:

namespace v
{
    static int g = 9; //different copy of g per translation unit
}

的extern:

namespace v
{
    extern int g; //share g between units
}

// add initialization to .cpp:
namespace v { int g = 9; }