类型a必须实现继承的纯虚方法b

时间:2013-02-12 20:01:24

标签: c++

我希望使用抽象类在C ++中模拟接口类型。但是在Eclipse IDE中,我得到了“这一行的多个标记”      - “Handler”类型必须实现继承的纯虚方法      '处理程序:: setNext'“

我的问题是为什么这个?

handler.h中

class Handler {
 public:

    virtual void setNext(Handler &next)  = 0;
    Handler();
    virtual ~Handler();
    virtual void process()  = 0;
 public:

    Handler *nextInChain;

};

Handler.cpp

#include "Handler.h"
Handler::Handler(){
}
Handler::~Handler(){
}

Oracle.h

#include "Handler.h"
class Oracle : virtual public Handler {
 public:
    Oracle();
    virtual ~Oracle();
    virtual void process();
    virtual void setNext(Handler &next);
 private:

};

Oracle.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){
}

1 个答案:

答案 0 :(得分:20)

这是不正确的:

Handler AQUI;

您无法实例化抽象类。

您要做的是定义指向Handler的指针,并为其指定子类中有效对象的地址,如Oracle