我有一个代码,用于读取在线存储的带有浮点数的文件,如下所示:“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/