gpt4 book ai didi

c++ - 类名没有命名类型 C++

转载 作者:行者123 更新时间:2023-11-30 01:34:08 27 4
gpt4 key购买 nike

我正在尝试使 << 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;
}

最佳答案

Pila是类模板,使用时需要指定模板参数。你可以制作operator<<一个函数模板,然后

template <typename T>
ostream& operator << (ostream& f_out, Pila<T> p ){
p.print(f_out);
return f_out;
}

顺便说一句:最好通过p通过引用避免对 Pila 进行复制操作其中包含 std::vector ,并制作print一个const成员函数。

template <class T>
class Pila {
...

void print(ostream & f_out) const {
for (int i = 0; i < getNElem; i++)
f_out << elem[i] << " ";
}

};

template <typename T>
ostream& operator << (ostream& f_out, const Pila<T>& p ){
p.print(f_out);
return f_out;
}

关于c++ - 类名没有命名类型 C++,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/56906022/

27 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com