C ++ LNK 2005错误"已在.obj中定义

时间:2017-08-16 06:35:07

标签: c++ lnk2005

我得到了这个LNK 2005错误,即使我已经使用正确的头文件和cpp文件格式创建游戏类,直到我知道。

在谷歌搜索问题一段时间之后似乎是导致此错误的主要原因,任何人都可以看到我搞砸了什么?

我的game.h文件如下:

#pragma once

class Game
{
public:


//Variables
char grid[9][8] = { { '#','#','#','#','#','#','#','#' },
                    { '#','G',' ','D','#',' ',' ','#' } ,
                    { '#',' ',' ',' ','#',' ',' ','#' } ,
                    { '#','#','#',' ','#',' ','D','#' } ,
                    { '#',' ',' ',' ','#',' ',' ','#' } ,
                    { '#',' ','#','#','#','#',' ','#' } ,
                    { '#',' ',' ',' ',' ',' ',' ','#' } ,
                    { '#','#','P','#','#','#','#','#' } ,
                    { '#','#','#','#','#','#','#','#' } };
int width, height;
int pX;
int pY;


char direction;
bool west;
bool north;
bool south;
bool east;
int quit;

Game();
};

我的game.cpp文件是:

#include "stdafx.h"
#include <String> 
#include <iostream>
#include "Game.h"

using namespace std;

//constructoer
Game::Game()
{
    width = 8, height = 8;
pX = 2;
pY = 7;


west = false;
north = true;
south = false;
east = false;
quit = 0;
}

我的主要意思是现在只是创建一个对象的实例

主:

 #include "stdafx.h"
 #include <String> 
 #include <iostream>
 #include "Game.cpp"
 #include "Game.h"


using namespace std;


int main()
{
    Game g;

    return 0;
}

1 个答案:

答案 0 :(得分:2)

在包含game.cpp时,您实际上实施了两次构造函数Game::Game(),即game.cpp中的一次(这是一个单独的翻译单位)和main.cpp中的一次(你在哪里包含构造函数实现代码)。 因此,您会收到链接器错误,而不是编译器错误。

要解决此问题,请删除#include "game.cpp"