gpt4 book ai didi

c++ - 重载 >> 运算符,在 while 循环中填充 vector

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

我想编写程序 witch Class,其中包含一些 vector 。我重载了“>>”运算符,我想把值放在一行中,就像这样

1 2 3 4

这是我的功能

istream &operator>>(istream &in, Wielomian &w){
double val;
w.stopien=0;
while(in>>val){
w.tabw.push_back(val);
w.stopien++;
}
return in;
};

我不知道我做错了什么,这个函数不会在循环中完成。这是我的课

class Wielomian{

private:
int stopien;
vector<double> tabw;
public:
Wielomian(){
stopien=0;
}
Wielomian(int s, vector<double> t){
tabw=t;
stopien=s;
}
Wielomian(Wielomian &w){
this->stopien=w.stopien;
this->tabw=w.tabw;
}

friend istream &operator>>(istream &in, Wielomian &w);
friend ostream &operator<<(ostream &out, const Wielomian &w);
};

感谢您的任何建议。

最佳答案

如果你只想读取同一行的所有内容,你应该尝试使用 getline 而不是 while(in >> val):

string inputStr;
std::getline(in, inputStr);

然后解析字符串以从中提取所有值。否则,如果您正在执行 while(in >> val),则需要以某种方式终止输入。

关于c++ - 重载 >> 运算符,在 while 循环中填充 vector ,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/38859966/

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