gpt4 book ai didi

c++ - 重新设置一个 istringstream 对象

转载 作者:行者123 更新时间:2023-11-28 06:14:47 25 4
gpt4 key购买 nike

当我运行这段代码时:

for (int i = 0; i < indexArray.size(); i++) {

iss.str(indexArray.at(i));
iss>>one;
iss>>two;
iss>>three;
cout<<one<<" "<<two<<" "<<" "<<three<<" "<<"\n";
}

istreamstream (iss) 在每次迭代中都保持不变。 (程序一开始就把文件读入一个vector,是的,我检查了确保数组有对应的数据。)

换句话说,我得到了这个输出:

12345 1  0 
12345 1 0
12345 1 0

而文件/vector 实际上说:

12345 1 0
12346 1 25
12543 1 50

我试过各种痕迹,但无法查明问题所在。谢谢!

最佳答案

你应该在 is.string(index Array.at(i)); 之前调用 iss.clear(); 以在重用 时清除 EOF 标志字符串流.

关于c++ - 重新设置一个 istringstream 对象,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/30553774/

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