2

Test.h 、 Test.cpp 、 main.cpp の 3 つのファイルがあります。

Test.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)
{
}

メイン.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

できるだけ早く助けてください..

4

3 に答える 3

5

これは定義です:

namespace v
{
    int g = 9;
}

これは、各ファイルで重複しmain.objtest.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誰もがアクセスできるインスタンスを1つだけにしたいですか?ヘッダーで、

extern int g; // declaration

Test.cppに、

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

次の 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 に答える