我有一个针对自动机的许多状态的泛型类。它声明如下:
#ifndef STATE_H_
#define STATE_H_
#include "Automat.h"
class State {
public:
virtual void readChar(char c, Automat* automat) = 0;
virtual ~State(){};
};
#endif /* STATE_H_ */
我在eclipse中遇到这个错误:
此行有多个标记
我的自动贩卖机如下:
#ifndef Automat_H_
#define Automat_H_
#include "../../Scanner/src/IScanner.h"
#include "./States/State.h"
class Automat {
public:
int count;
State* current;
IScanner* scanner;
Automat(IScanner *s);
void readChar(char c);
void setState(State *s);
void error();
~Automat();
};
#endif /* Automat_H_ */
最后是Automat的实现,我将省略一些方法。
#include "Automat.h"
#include "./States/StartState.h"
Automat::Automat(IScanner *s) {
current = StartState::makeStartState();
scanner = s;
count = 0;
}
void Automat::readChar(char c) {
current->readChar(c, this);
}
我不知道是什么原因引起的。我需要在界面中声明事物吗?为什么要转换参数?
提前谢谢大家。
答案 0 :(得分:6)
两个标题都试图互相包含,这是不可能的。
幸运的是,类定义都不需要另一个的完整定义。每个只处理指向另一个的指针,只需要声明。所以替换
#include "Automat.h"
与
class Automat;
同样适用于State
。
答案 1 :(得分:-1)
IMO,我会在主文件中执行预处理程序,并在每个头文件中定义一个变量,因此您知道它只包含一次。如果给出,你也可以在“StdAfx.h”中做到这一点。
这只是一个标题混乱,请务必仅包含一次。 #pragma once
也可以提供帮助。