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
できるだけ早く助けてください..