Lew*_*wis 0 c++ ifstream while-loop
如果我的输入文件以字母开头,它将停止while循环,因为它无法重写int1,我知道但是我怎么能够检测到这一点并显示一条错误消息,说workinfile>>int1不起作用,然后继续循环?
cin>>filename;
ifstream workingfile(filename);
while (workingfile>>int1>>int2>>string1>>string2) {
cout<<int1<<int2<<string1<<string2<<endl;
linenumread++;
}
Run Code Online (Sandbox Code Playgroud)
我尝试过,但它不起作用,任何帮助将不胜感激
while (workingfile>>int1>>int2>>string1>>string2) {
if(!(workingfile>>int1))
{
cout<<"Error first value is not an integer"<<endl;
continue;
}
cout<<int1<<int2<<string1<<string2<<endl;
linenumread++;
}
Run Code Online (Sandbox Code Playgroud)
还有可能检测它是否也停止读取字符串?
输入文件看起来像这样
10 10 ab bc
11 11 cd ef
a
12 12 gh hi
Run Code Online (Sandbox Code Playgroud)
我想检测何时遇到无效输入,显示错误消息,并继续文件中的下一行.
对于这种输入,通常最好读取一个完整的行,然后从该行中提取值.如果无法解析该行,则可以报告该行的失败,并从下一行的开头继续.
这看起来像这样:
std::string line;
while (std::getline(workingfile, line)) // Read a whole line per cycle
{
std::istringstream workingline(line); // Create a stream from the line
// Parse all variables separately from the line's stream
if(!(workingline>>int1))
{
cout<<"Error first value is not an integer"<<endl;
continue;
}
if(!(workingline>>int2)
{
cout<<"Error second value is not an integer"<<endl;
continue;
}
// ^^^^ a.s.o. ...
cout<<int1<<int2<<string1<<string2<<endl;
linenumread++;
}
Run Code Online (Sandbox Code Playgroud)