我正在尝试重载此类中的<< operator
,但是编译器给我Pila
不是类型错误(Pila
是堆栈,即类的名称) 。 GetNElem
是我未包含的另一个功能,请放心。
#include <vector>
#include <iostream>
using namespace std;
template <class T>
class Pila {
private:
vector <T> elem;
public:
/* Pila(){
} */
Pila ( int n ) {
elem.resize(n);
}
void print(ostream & f_out){
for (int i = 0; i < getNElem(); i++)
f_out << elem[i] << " ";
return;
}
};
ostream& operator << (ostream& f_out, Pila p ){
p.print(f_out);
return f_out;
}
答案 0 :(得分:4)
Pila
是一个类模板,使用时需要指定模板参数。然后,您可以将operator<<
设为功能模板,然后
template <typename T>
ostream& operator << (ostream& f_out, Pila<T> p ){
p.print(f_out);
return f_out;
}
BTW:最好通过引用传递p
以避免对包含Pila
的{{1}}进行复制操作,并使std::vector
成为print
成员函数。
const