如何删除模板类的输出opertor重载的错误

时间:2017-10-09 17:01:45

标签: c++

.then()

.....................................

friend ostream& operator<< (ostream& os,const aList<T>&);

template <class T>
ostream & operator << (ostream &output,const aList<T>& a){
    output<<a.length;
    return output; 
}

1 个答案:

答案 0 :(得分:0)

乍一看,您的朋友声明所指的但不在模板声明之外的事实似乎是您的第一个问题。

看看这个问题。它似乎非常相关: friend declaration declares a non-template function