请看下面的代码:
std::string s;
while(std::getline(m_File,s))
{
std::cout<<"running\n";
std::string upper(s);
std::transform(upper.begin(),upper.end(),upper.begin(),toupper);
if(upper.find("*NODE") != std::string::npos)
{
std::cout<<"start reading nodes\n";
readnodes();
}
std::cout<<"\n open? "<<m_File.is_open()<<"\n";
}
我正在尝试从下面的输入文件中提取数据。(输入文件)
*NODE
1 ,1.0,2.0
2, 2.6,3.4
3, 3.4, 5.6
*NODE
4, 4, 5
5, 5, 6
但是,当我运行此程序时,程序找到* NODE的第一个实例并调用readnode()函数,但是无法识别* NODE的第二个实例。
m_File是同一类的ifstream对象,其中readnode()被定义为私有(private)函数。
readnode():
void mesh::readnodes()
{
char c;
int id;
float x,y;
while(m_File>>id>>c>>x>>c>>y)
{
node temp(id,x,y);
m_nodes.push_back(temp);
// dummy string for reading rest of line.
std::string dummy;
std::getline(m_File,dummy);
}
}
最佳答案
为什么意外退出?
while(m_File>>id>>c>>x>>c>>y)
{
node temp(id,x,y);
m_nodes.push_back(temp);
// dummy string for reading rest of line.
std::string dummy;
std::getline(m_File,dummy);
}
在上面的代码中,
m_File>>id>>c>>x>>c>>y
用于读取id,x,y
,但是在读取了第一对节点行后,当m_File>>id>>c>>x>>c>>y
失败时它会中断,这也可能会更改m_File
的状态。结果,getline(m_File, s)
返回false,这导致意外退出。解:
我没有遇到基于您原始程序的解决方案。但是,由于您要从字符串中提取值,因此 boost 可能是更好的解决方案,请检查:
while (getline(m_File, s))
{
if (boost::to_upper_copy(s) == "*NODE") continue;
std::vector<std::string> SubStr;
boost::algorithm::split(SubStr, s, boost::is_any_of(" ,"));
SubStr.erase(std::remove(SubStr.begin(), SubStr.end(), ""), SubStr.end());
m_nodes.push_back(node(atoi(SubStr[0].c_str()), atof(SubStr[1].c_str()), atof(SubStr[2].c_str())));
}
取得结果:
for (auto Itr : m_nodes)
std::cout << Itr.id << "," << Itr.x << "," << Itr.y << std::endl;
1,1.0,2.0
2,2.6,3.4
3,3.4,5.6
4,4,5
5,5,6
关于c++ - 使用ifstream getline意外退出循环,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/40733724/