SortedList.h是一个抽象模板(纯虚函数),LinkedSortedList.h派生SortedList.h并是一个模板,LinkedSortedList.cpp是实现LinkedSortedList.h中的功能的模板。
我的错误是当我尝试覆盖LinkedSortedList.h中SortedList.h中的函数时。
SortedList.h中的方法:
virtual void clear() = 0;
LinkedSortedList.h中的方法:template <typename Elm> void SortedList<Elm>::clear() override;
错误:我试过了:
void SortedList<Elm>::clear(){}
但是我仍然遇到同样的错误。我试图在网络上找到解决方案,但是失败了。这是SortedList.h,不得更改:
#ifndef _SortedListClass_
#define _SortedListClass_
template <class Elm> class SortedList {
public:
// -------------------------------------------------------------------
// Pure virtual functions -- you must implement each of the following
// functions in your implementation:
// -------------------------------------------------------------------
// Clear the list. Free any dynamic storage.
virtual void clear() = 0;
// Insert a value into the list. Return true if successful, false
// if failure.
virtual bool insert(Elm newvalue) = 0;
// Get AND DELETE the first element of the list, placing it into the
// return variable "value". If the list is empty, return false, otherwise
// return true.
virtual bool getfirst(Elm &returnvalue) = 0;
// Print out the entire list to cout. Print an appropriate message
// if the list is empty. Note: the "const" keyword indicates that
// this function cannot change the contents of the list.
virtual void print() const = 0;
// Check to see if "value" is in the list. If it is found in the list,
// return true, otherwise return false. Like print(), this function is
// declared with the "const" keyword, and so cannot change the contents
// of the list.
virtual bool find(Elm searchvalue) const = 0;
// Return the number of items in the list
virtual int size() const = 0;
};
#endif
这是LinkedSortedList.h可以根据需要重写:#ifndef _LinkedSortedList_
#define _LinkedSortedList_
#include "SortedList.h"
#include "LinkedNode.h"
#include <iostream>
using namespace std;
template <class Elm> class LinkedSortedList:public SortedList<Elm>
{
public:
template <typename Elm> LinkedSortedList();
virtual void SortedList<Elm>::clear();
virtual bool SortedList<Elm>::insert(Elm newvalue);
virtual bool SortedList<Elm>::getfirst(Elm &returnvalue);
virtual void SortedList<Elm>::print() const;
virtual bool SortedList<Elm>::find(Elm searchvalue) const;
virtual int SortedList<Elm>::size() const;
private:
LinkedNode<Elm> *head;
int num;
};
#endif
LinkedSortedList.cpp是LinkedSortedList的实现,并在末尾有以下两行:template class LinkedSortedList<int>;
template class LinkedSortedList<double>;
最佳答案
您没有正确覆盖。重写是派生类的成员,而不是基类的成员。
同样,您的构造函数没有理由成为函数模板。
我认为您的类(class)应该更像这样:
template <class Elm> class LinkedSortedList : public SortedList<Elm>
{
public:
LinkedSortedList();
void clear() override;
bool insert(Elm newvalue) override;
bool getfirst(Elm &returnvalue) override;
void print() const override;
bool find(Elm searchvalue) const override;
int size() const override;
private:
LinkedNode<Elm> *head;
int num;
};
关于c++ - C++无法覆盖纯虚函数,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/22024020/