我使用MVS 2013,我在文件ListStruct.h中编写了struct。在链接期间,我收到错误LNK2005:
error LNK2005: "public: __thiscall ListStruct::ListStruct(void)" (??0ListStruct@@QAE@XZ) already defined in projekt1.obj
现在 - ListStruct.h的一部分
#ifndef _LISTSTRUCT_H_
#define _LISTSTRUCT_H_
#include "stdafx.h"
struct ListStruct{
Member *head; //wskaznik na poczatek listy
Member *tail; //wskaznik na koniec listy
void AddMember(int value);
void RemoveMember(int value);
void Display();
ListStruct();
};
#endif
我的主要部分:
#include "stdafx.h"
int _tmain(int argc, _TCHAR* argv[])
{
ListStruct *base = new ListStruct;
system("pause");
return 0;
}
我做错了什么?我是否必须创建ListStruct.cpp文件?它看起来应该是什么样的?
答案 0 :(得分:0)
似乎在未显示的部分的头文件ListStruct.h中有一个构造函数的定义
ListStruct();
由于此标头包含在多个模块中,因此链接器会发出构造函数已定义的错误。
您应该只在一个模块中定义构造函数,或者在标题中使用函数说明符inline
定义它。