嗨,我不知道如何问这个问题我已经做了相当多的查找,但结果却是空的;所以如果这已经过去了,我必须道歉。我正在做我的第一个 c++ 项目,这很有趣。编译代码时出现重新定义错误。该项目由 3 个主文件组成,每个文件都有自己的头文件和一个它们都使用的通用头文件。我希望我的其他文件能够访问这个类,所以我在公共头文件中声明了它。我在警卫中写道,所以我认为这可以避免这个错误,但事实并非如此,我不明白为什么。
这是有问题的两个头文件。
菜单.h
#ifndef MENU_H
#define MENU_H
#include "common.h"
class menu
{
int x, y, iterations, time;
void title(int maxX, int maxY);
void titleSplash();
void fall(bool, int&, int, int);
public:
menu();
void init();
int score;
void gameOver(int how);
void mainMenu();
};
#endif
常见的.h
#ifndef COMMON_H
#define COMMON_H
//things that all files need
#include <curses.h>
#include <string.h>
#include <cstring>
#include <cstdlib> //for debugging
#include <unistd.h>
#include <iostream>
//using namespace std;
#ifdef _WIN32//are we running windows?
#define _WIN32_WINNT 0x0600
#define CLOCK 2//only used for the opening animaitons repalaces clock
#define SLEEP(a) sleep(a);//in 1000s of a second
#include "WIN32.h"
#endif
#ifndef _WIN32
#define CLOCK 8
#define SLEEP(a) usleep( a * 1000);//in 1 000 000s of a second// replaces CLOCK
#endif
#define TIMER 17 //for about 60 times a second rounding up form 16.666666
#ifndef MAIN_H
#ifndef NON_MAIN_COMMON
#define NON_MAIN_COMMON
//common things that i dont want to put in each header file
#endif
#endif
//everything else if after here including everything common.cpp
//------------------------------------------------------------------------------------------
//anything in myLib MUST be externed to avoid multiple definitions error
#ifndef MYLIB_H
extern void getStdScr();
extern int stdx, stdy, score;
extern WINDOW * win;
extern void ncursesInit();
extern void wrapper();
extern void newGame();
extern std::string keyPress();
extern void bclear(WINDOW * window);
#endif
#ifndef MENU_H
class menu
{
public:
menu();
void init();
int score;
void gameOver(int how);
void mainMenu();
};
#endif
//end of myLib
#endif
//EOCOMMON
我认为 menu.h 和 common.h 中的守卫会阻止重新定义我的菜单类。