作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我有一个通用的链表类,其中包含一个 protected 内部类,该内部类包含 ListElements(节点)。在我的 Linked-List 类中,我想创建一个函数,该函数返回指向给定参数之前的 List-Element 的指针。我无法弄清楚如何在通用模板类中正确定义和实现这样的功能。
这是 LinkedList.h 代码。
template <typename Type>
class LinkedList
{
public:
LinkedList();
LinkedList(const LinkedList &src);
~LinkedList();
void insert(const Type &item, int);
void remove();
Type retrieve() const;
int gotoPrior();
int gotoNext();
int gotoBeginning();
void clear();
int empty() const;
void printList();
protected:
class ListElement
{
public:
ListElement(const Type &item, ListElement* nextP):
element(item), next(nextP) {}
Type element;
ListElement* next;
};
ListElement *head;
ListElement *cursor;
};
我想实现这样的功能。牢记:我已经知道如何正确编写函数代码,我不确定如何在 LinkedList.h 中定义它并在 LinkedList.cpp 中实现它
ListElement *LinkedList::ListElement getPrevious(ListElement *target){
//where a list element inside the list is passed and this returns
//the node previous to that.
最佳答案
您不能在头文件中声明模板方法,然后在 cpp 文件中实现它。模板方法必须在头文件中实现。您可以在类中声明您的方法,也可以在文件中进一步实现它们。当在类下面实现时,您的示例方法将如下所示
template<typename Type>
LinkedList<Type>::ListElement *LinkedList<Type>::ListElement::getPrevious(ListElement *target){
//...
}
关于c++ - 返回指向 protected 内部类元素的指针,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/30960159/
我是一名优秀的程序员,十分优秀!