我正在尝试在链表类的Front()方法中返回一个Node。 front方法只返回链表中的第一个元素(即哪个是节点)。但是,编译器并不喜欢这样。它给了我以下错误。
Error: initial reference value of reference to non-const must be an lvalue.
有没有人知道解决这个问题的方法? mHead是intellisense强调的内容。
Node &List::Front()
{
return mHead->getData();
}
Potion Node::getData()
{
return mData;
}
list.h
#ifndef LIST_H
#define LIST_H
#include "node.h"
#include "potion.h"
class List
{
public:
//Default constructor
List();
//Copy constructor
List(const List & copy);
//Overloaded assignment operator
List &operator=(const List & rhs);
//Destructor
~List();
//Methods
void PushFront(Node * newNode);
void PushBack(Node * newNode);
void PopFront();
void PopBack();
/*const Potion &Front() const;
const Potion &Back() const;*/
Node &Front();
Node &Back();
void Purge();
bool empty();
int getNumberOfNodes();
Node * CreateNode(Potion potion);
void Save(std::ofstream & file);
void Load(std::ifstream & file);
protected:
//Data members
Node * mHead;
Node * mTail;
static int mNumberOfNodes;
};
#endif
答案 0 :(得分:3)
我猜你的getData()
函数正在返回数据的副本而不是引用。临时对象不是lvalue
。