我对getline有点问题。我想逐行阅读但只有>>在getline没有阅读时,阅读工作正在进行。这是我的代码:
int studentSize;
string programme;
filein >> studentSize;
filein >> programme;
if (programme == "Physics")
{
for(int i=0; i < studentSize; i++)
{
getline (filein,namephys, '*');
filein >> idphys;
getline (filein,course, '*');
filein >> mark;
phys.push_back(new physics());
phys[i]->setNameId(namephys, idphys);
phys[i]->addCourse(course, mark);
sRecord[idphys] = phys[i];
}
}
这是我的档案:
2
Physics
Mark Dale*
7961050
Quantum Programming*
99
Mark Dale和Quantum Programming的输出效果不佳。它似乎在他们面前得到了整条线。谢谢你的帮助。
答案 0 :(得分:1)
流可能随时失败&amp;你的循环无法对它做出反应。 你应该这样做:
if( programme == "Physics" )
{
filein.ignore();
// a more strict version is : (#include <limits>)
//filein.ignore( numeric_limits<streamsize>::max(), '\n' );
while( getline(filein, namephys, '*') &&
filein >> idphys &&
filein.ignore() && //** ignore the trailing newline (operator>> doesn't read it)
getline(filein, course, '*') &&
filein >> mark &&
filein.ignore() )
{
/* do something */
}
}
每当流状态变坏
时,此循环立即退出