我有一个用于自动机的许多状态的通用类。它声明如下:
#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中得到这个错误:
此行有多个标记
- 没有已知的参数 2 从 'Automat* const' 到 'int*' 的转换</li>
- 虚空状态::readChar(char, int*)
- 'Automat' 尚未声明
我的自动机如下:
#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);
}
我不知道是什么原因造成的。我需要在接口中声明东西吗?为什么要转换参数?
谢谢大家。