如何使用链表重载运算符<<

How to overload operator << with linked list?

本文关键字:运算符 重载 何使用 链表      更新时间:2023-10-16

对于类,我正在尝试重载<<运算符,以便我可以打印出我创建的对象。 我声明并添加了此内容

WORD you; //this is a linked list that contains 'y' 'o' 'u'

我想这样做

cout << you; //error: no operator "<<" matches theses operands

我必须将插入运算符重载为带有链接的友元函数才能打印单词。

我已经声明并定义了重载函数,但它仍然不起作用。 这是类声明文件,后跟带有函数的.cpp文件

#include <iostream>
using namespace std;
#pragma once
class alpha_numeric //node
{
public:
char symbol; //data in node
alpha_numeric *next;//points to next node
};
class WORD
{
public:
WORD(); //front of list initially set to Null
//WORD(const WORD& other);
bool IsEmpty(); //done
int Length();
void Add(char); //done
void Print(); //dont
//void Insert(WORD bword, int position);
//WORD operator=(const string& other);
friend ostream & operator<<(ostream & out, alpha_numeric *front);//******************<-----------------
private:
alpha_numeric *front; //points to the front node of a list
int length;
}; 

在.cpp文件中,我把*front放在参数中,因为它说当我尝试在函数中使用它时front没有定义,即使我在类中声明了它。 然后我尝试了这个。我不知道它是否正确。

ostream & operator<<(ostream & out, alpha_numeric *front)
{
alpha_numeric *p;
for(p = front; p != 0; p = p -> next)
{
    out << p -> symbol << endl;
}
}

如果要重载类 WORD 的<<,参数必须是"WORD"类型。我认为在问这样的问题之前,您必须搜索重载<<。:-)

class WORD
{
friend ostream & operator<<(ostream & out, const WORD& w);
}
ostream & operator<<(ostream & out, const WORD& w)
{
alpha_numeric *p;
for(p = w.front; p != 0; p = p -> next)
    out << p -> symbol;
out<<endl;
return out;
}