2

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

测试.h

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

测试.cpp

   #include "Test.h"


namespce::namespce(void)
{
}

namespce::~namespce(void)
{
}

主文件

#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

请尽快帮助..

4

3 回答 3

5

这是一个定义:

namespace v
{
    int g = 9;
}

在每个文件main.obj中都重复test.obj了。包含保护仅防止单个翻译单元中的多个包含。#include "Test.h".cpp#ifndef Test_H

改成:

namespace v
{
    extern int g; // This is now a declaration and extern tells the compiler
                  // that there is definition for g somewhere else.
}

并将以下内容添加到Test.cpp

namespace v
{
    int g = 9; // This is now the ONLY definition of 'g', in test.obj.
}
于 2012-07-27T11:09:09.840 回答
3

您只希望g每个人都可以访问一个实例吗?在标题中,使用

extern int g; // declaration

在 Test.cpp 中,放

int v::g = 9; //definition
于 2012-07-27T11:09:31.513 回答
2

你有两个选择:

静止的:

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

外部:

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

// add initialization to .cpp:
namespace v { int g = 9; }
于 2012-07-27T11:11:11.453 回答