程序師世界是廣大編程愛好者互助、分享、學習的平台,程序師世界有你更精彩!
首頁
編程語言
C語言|JAVA編程
Python編程
網頁編程
ASP編程|PHP編程
JSP編程
數據庫知識
MYSQL數據庫|SqlServer數據庫
Oracle數據庫|DB2數據庫
 程式師世界 >> 編程語言 >> 更多編程語言 >> 編程綜合問答 >> 繼承-c++ 關於 hufftree的子類指針與父類指針問題

繼承-c++ 關於 hufftree的子類指針與父類指針問題

編輯:編程綜合問答
c++ 關於 hufftree的子類指針與父類指針問題

在寫一個hufftree,其中 HuffTree 的結點 Root 的類型是 HuffNode, 而 HuffNode 有兩個子類 LeafNode 和 IntlNode ,huffTree 是由這兩種類型的指針結點組成。問題是我在調用 Root 顯示的是 HuffNode 類型(父類)的,而不是 LeafNode* 或 IntlNode*類型的,調用子類的函數報錯顯示成員函數未定義。

template <typename E> class HuffNode {
public:
    virtual ~HuffNode() {}
    virtual int weight() = 0;
    virtual bool isLeaf() = 0;
};

template <typename E>
class LeafNode : public HuffNode<E> {
private:
    E it;
    int wgt;
public:
    LeafNode(const E& val, int freq)
        { it = val; wgt = freq; }
    int weight() { return wgt; }
    E val() { return it; }
    bool isLeaf() { return true; }
};

template <typename E>
class IntlNode : public HuffNode<E>{
private:
    HuffNode<E>* lc;
    HuffNode<E>* rc;
    int wgt;
public:
    IntlNode(HuffNode<E>* l, HuffNode<E>* r)
        { wgt = l->weight() + r->weight(); lc = l; rc = r; }
    int weight() { return wgt; }
    bool isLeaf() { return false; }
    HuffNode<E>* left() const { return lc; }
    void setLeft(HuffNode<E>* b)
        { lc = (HuffNode<E>*)b; }
    HuffNode<E>* right() const { return rc; }
    void setRight(HuffNode<E>* b)
        { rc = (HuffNode<E>*)b; }

};

template <typename E>
class HuffTree {
private:
    HuffNode<E>* Root;
public:
    HuffTree(E& val, int freq)
        { Root = new LeafNode<E>(val,freq); }
    HuffTree (HuffTree<E>* l, HuffTree<E>* r)
        { Root = new IntlNode<E>(l->root(), r->root()); }
    ~HuffTree(){}
    HuffNode<E>* root() { return Root; }
    int weight() { return Root->weight(); }
};

最佳回答:


你子類對應的函數也要是virtual虛函數

amity_2014
  1. 上一頁:
  2. 下一頁:
Copyright © 程式師世界 All Rights Reserved