我使用的是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文件吗?它应该是什么样子?
在您没有显示的部分的标题ListStruct.h中似乎有构造函数的定义
ListStruct();
由于此标头包含在多个模块中,因此链接器会发出已定义构造函数的错误。
您应该只在一个模块中定义构造函数,或者在头中使用函数说明符inline
来定义它。