类名未命名类型c ++

时间:2019-07-05 15:44:09

标签: c++ class templates

我正在尝试重载此类中的<< 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;
}

1 个答案:

答案 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