我想要使用抽象类在 C++ 中模拟接口原型。但是在 Eclipse IDE 中,我得到“这一行的多个标记 - 'Handler' 类型必须实现继承的纯虚拟方法 'Handler::setNext'”
我的问题是为什么会这样?
处理程序.h
class Handler {
public:
virtual void setNext(Handler &next) = 0;
Handler();
virtual ~Handler();
virtual void process() = 0;
public:
Handler *nextInChain;
};
处理程序.cpp
#include "Handler.h"
Handler::Handler(){
}
Handler::~Handler(){
}
甲骨文.h
#include "Handler.h"
class Oracle : virtual public Handler {
public:
Oracle();
virtual ~Oracle();
virtual void process();
virtual void setNext(Handler &next);
private:
};
甲骨文.cpp
#include "Oracle.h"
Oracle::Oracle(){
Handler AQUI;//AQUI I get Multiple markers at this line
//- The type 'Handler' must implement the inherited pure virtual method
//'Handler::setNext'
}
Oracle::~Oracle(){
}
void Oracle::process(){
}
void Oracle::setNext(Handler &next){
}