我在链接列表中有一个多项式实现,并希望执行std::ostream
重载操作,但它给出了no match for ‘operator<<’ in ‘std::cout << p5’
这是我的实现,但是当我通过cout << p5
进行测试时,我得到了上述错误。
更新: 头文件:
struct term{
double coef;
unsigned deg;
struct term * next;
};
class Polynomial {
public:
constructors etc
overloading functions
friend ostream& operator << (ostream& out,const term& object);
}
然后在其他文件poly.cpp中我有:
ostream & operator << (ostream& out, const Polynomial object){
term* q = object.getptr();
if (object.getptr() == NULL)
out << "( )";
else
while(q != NULL)
{
out << q->coef << "x^" << q->deg << " ";
q = q->next;
}
return out;
}
在main.cpp中
多项式p5,然后添加了一些术语cout << p5
,但我收到了错误。
答案 0 :(得分:1)
我认为这是导致问题的声明:
friend ostream & operator << (ostream & out, const term & object);
和
ostream & operator << (ostream & out, const Polynomial & object);
这些不匹配。一个使用term
对象,后者使用Polynomial
对象。我假设您希望此函数使用术语对象,因为该函数使用特定于结构term
的数据成员。因此,更改后者以接受term
对象:
ostream & operator << (ostream & out, const term & object);