6

我想要使​​用抽象类在 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){
}
4

1 回答 1

24

这是不正确的:

Handler AQUI;

您不能实例化抽象类。

您要做的是定义一个指针Handler并将其分配给来自子类的有效对象的地址,例如Oracle.

于 2013-02-12T20:03:54.787 回答