如何实例化从抽象类派生的类

How to instantiate a class derived from a abstract class

本文关键字:派生 抽象类 实例化      更新时间:2023-10-16
template<class Elem>
class BinNode//Binary tree node abstract class.
{
public:
    virtual Elem& val() = 0;//return the node's element;
    virtual void setVal(const Elem& ) = 0;//set the node's element;
    virtual BinNode* left() const = 0;//return the node's left child;
    virtual BinNode* right() const = 0;//return the node's right child;
    virtual void setLeft(BinNode*) = 0;//set the node's left child's element;
    virtual void setRight(BinNode*) = 0;//set the node's right child's element;
};
template<class Elem>
class BinNodePtr:public BinNode<Elem>
{
public:
    Elem ele;//the content of the node
    BinNodePtr<Elem>* lc;//the node's left child
    BinNodePtr<Elem>* rc;//the node's right child
public:
    static int now_on;//the node's identifier
    BinNodePtr(){lc = rc = NULL;ele = 0;};//the constructor
    ~BinNodePtr(){};//the destructor
    void setVal(const Elem& e){this->ele = e;};
    Elem& val(){return ele;}//return the element of the node
    inline BinNode<Elem>* left()const//return the node's left child
    {
        return lc;
    }
    inline BinNode<Elem>* right()const//return the node's right child
    {
        return rc;
    }
    void setLeft(const Elem& e){lc->ele = e;}//to set the content of the node's leftchild
    void setRight(const Elem& e){rc->ele = e;}//to set the content of the node's rightchild
};
int main()
{
    BinNodePtr<int> root;//initiate a variable//the error is here.
    BinNodePtr<int> subroot = &root;//initiate a pointer to the variable
}

当我构建它时,编译器告诉我"不能实例化抽象类"。错误在BinNodePtr root;我不是实例化一个抽象类,而是一个从抽象类派生的类。如何解决?

在抽象类中

virtual void setLeft(**BinNode***) = 0;//set the node's left child's element;
virtual void setRight(**BinNode***) = 0;//set the node's right child's element;

和派生类

void setLeft(const **Elem**& e){lc->ele = e;}
void setRight(const **Elem**& e){rc->ele = e;}

以下两个方法没有定义:

virtual void setLeft(BinNode*) = 0;//set the node's left child's element;
virtual void setRight(BinNode*) = 0;//set the node's right child's element;

因为BinNodePtr中定义的方法有不同的参数:

void setLeft(const Elem& e){lc->ele = e;}
void setRight(const Elem& e){rc->ele = e;}

因为你没有实现这些纯虚函数

virtual void setLeft(BinNode*) = 0;//set the node's left child's element;
virtual void setRight(BinNode*) = 0;//set the node's right child's element;

所以类BinNodePtr是一个抽象类。还有一个导入规则:你可以实例化一个抽象类,也就是说你不能用抽象类创建一个类对象。

你可以阅读这篇文章