gpt4 book ai didi

c++ - 使用 ifstream getline 意外退出循环

转载 作者:行者123 更新时间:2023-11-30 05:20:17 25 4
gpt4 key购买 nike

请看下面的代码:

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";

}

我正在尝试从下面的输入文件中提取数据。(INPUT FILE)

 *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)函数。

读取节点():

 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;

Output

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/

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