gpt4 book ai didi

C++ - 重复使用 istringstream

转载 作者:塔克拉玛干 更新时间:2023-11-03 02:21:42 26 4
gpt4 key购买 nike

我有一个代码,用于读取行中存储有 float 的文件,如下所示:“3.34|2.3409|1.0001|...|1.1|”。我想使用 istringstream 阅读它们,但它并不像我期望的那样工作:

  string row;
string strNum;

istringstream separate; // textovy stream pro konverzi

while ( getline(file,row) ) {
separate.str(row); // = HERE is PROBLEM =
while( getline(separate, strNum, '|') ) { // using delimiter
flNum = strToFl(strNum); // my conversion
insertIntoMatrix(i,j,flNum); // some function
j++;
}
i++;
}

在标记点,行仅在第一次被复制到单独的流中。在下一次迭代中它不起作用并且什么都不做。我希望在每次迭代中无需构造新的 istringstream 对象就可以使用更多次。

最佳答案

将行设置到 istringstream 之后...

separate.str(row);

...通过调用重置它

separate.clear();

这会清除在上一次迭代中或通过设置字符串设置的任何 iostate 标志。 http://www.cplusplus.com/reference/iostream/ios/clear/

关于C++ - 重复使用 istringstream,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/39334902/

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