您好我正在使用C ++编写程序,我的IDE显然是VC ++,我遇到了这个链接器错误。
error LNK2005: "class Graphics TheGraphics" (?TheGraphics@@3VGraphics@@A) already defined in Game.obj
我查了解如何修复它,但没有一个链接修复它。所以我想我自己都问你。 这些都是我的文件
Game.h
Graphics.h
Inc.h
Main.h
Game.cpp
Graphics.cpp
Main.cpp
WndProc.cpp
并且在所有头文件中我都有
#ifndef ...
#define...
..
#endif
我在头文件中也有一些包含。
在Inc.h中,我在#ifndef和#define 之间有这个#include <Windows.h>
#include <d3d9.h>
#include <d3dx9.h>
#include "Game.h"
#include "Graphics.h"
在Main.h中我在#ifndef和#define 之间有这个
#include "Inc.h"
我还创建了对象Game和Graphics对象
extern Game TheGame;
extern Graphics TheGraphics
我还宣布了1个功能
LRESULT CALLBACK WndProc(HWND hWnd,
UINT Msg,
WPARAM wParam,
LPARAM lParam);
那是Main.h
在Game.h和Graphics.h中我在#ifndef和#define
之前有这个#include "Main.h"
在Game.h中我创建了一个名为Game的类和一个名为GAMESTATE的枚举。 在Graphics.h中,我创建了一个名为Graphics的类。
该类的所有.cpp文件仅包含其类标题,WndProc包含Main.h
毕竟我在编译时得到了这个。
1>Graphics.obj : error LNK2005: "class Graphics TheGraphics" (?TheGraphics@@3VGraphics@@A) already defined in Game.obj
1>Graphics.obj : error LNK2005: "class Game TheGame" (?TheGame@@3VGame@@A) already defined in Game.obj
1>Main.obj : error LNK2005: "class Graphics TheGraphics" (?TheGraphics@@3VGraphics@@A) already defined in Game.obj
1>Main.obj : error LNK2005: "class Game TheGame" (?TheGame@@3VGame@@A) already defined in Game.obj
1>WndProc.obj : error LNK2005: "class Graphics TheGraphics" (?TheGraphics@@3VGraphics@@A) already defined in Game.obj
1>WndProc.obj : error LNK2005: "class Game TheGame" (?TheGame@@3VGame@@A) already defined in Game.obj
1>F:\Games\Zombie Lypse\Release\Zombie Lypse.exe : fatal error LNK1169: one or more multiply defined symbols found
请帮助我到处寻找,我已经尝试自己修复它。仍然没有。
答案 0 :(得分:3)
你已经在所有地方都使用了全局变量,但没有在任何地方定义它。
extern
没有定义变量。它只是告诉编译器变量是在别处定义的。所以你必须在其他地方实际定义它。
你可以这样做。
在头文件中
/* main.h */
MYEXTERN Game TheGame;
MYEXTERN Graphics TheGraphics
在第一个.c文件中
在main.cpp
中/* MYEXTERN doesn't evaluate to anything, so var gets defined here */
#define MYEXTERN
#include "main.h"
在其他.cpp文件中
/* MYEXTERN evaluates to extern, so var gets externed in all other CPP files */
#define MYEXTERN extern
#include "main.h"
因此它仅在一个.cpp文件中定义。在所有其他人中被淹没。