gpt4 book ai didi

c++ - Stringstream 没有按需要阅读

转载 作者:太空宇宙 更新时间:2023-11-04 13:50:35 25 4
gpt4 key购买 nike

在尝试了几个小时以找出为什么我的 C++ 代码不能按要求工作后,我发现错误应该隐藏在这段代码中:

void loadWorld(GameOfLife& game, int rij, int kolom, string fileName){
// Reads a .LIF-file and configures the GameOfLife object based on this info
ifstream ifs(fileName.c_str());
stringstream ls;
if(!ifs) throw new fileNotFound;
string line;
char tempChar;
Block tempBlock;
vector<Cel> tempVector(0);
string rule;
while(ifs.good()){
getline(ifs, line); //get next line from the file
ls.str(line); //put it into a stringstream
if(line!="") { //skip empty strings
ls >> tempChar;
if(tempChar=='#')
ls >> tempChar; //go to the next sign
switch(tempChar){
case 'N':
rule = "23/3"; //default rule
break;
case 'R':
ls >> rule; //set new rule
break;
case 'P' :
if(tempBlock.cellen.size()>0)
loadBlock(game, rij, kolom, tempBlock); //load previous block
//new block
tempBlock.cellen.clear();
ls >> tempBlock.x >> tempBlock.y;
break;
case '.' : case '*' :
cout << tempChar; //for testing
tempVector.clear();
if(tempChar=='.')
tempVector.push_back(Cel(0, fl_rgb_color(0,0,0)));
else
tempVector.push_back(Cel(1, fl_rgb_color(0,0,0)));
while(ls.good()){
ls >> tempChar;
cout << tempChar; //test
if(tempChar=='.')
tempVector.push_back(Cel(0, fl_rgb_color(0,0,0)));
else
tempVector.push_back(Cel(1, fl_rgb_color(0,0,0)));
}
tempBlock.cellen.push_back(tempVector);
cout << endl; //test
break;
default:
break;
}
}
}
loadBlock(game, rij, kolom, tempBlock); //load last block
int survival=0;
int birth=0;
extractRule(rule, survival, birth);
game.setSurvival(survival);
game.setBirth(birth);
}

该代码是康威生命游戏实现的一部分,应该读取包含特定配置信息的文件,然后配置 GameOfLife 类型的对象“游戏”以包含此配置。应该读取的文件示例是:

#Life 1.05
#D Acorn
#D The most vigorously growing 7-cell
#D "methuselah" pattern. See also RABBITS.
#N
#P -3 -1
.*
...*
**..***

程序应忽略前四个规则,在阅读第五条规则后,应将游戏规则设置为 23/3,即正常规则。它做到了这一切。它还应该读取像#P 后面的代码块。由于某种原因,它没有这样做。如您所见,我在代码中未按预期工作的部分使用 cout 作为调试工具。我的预期输出是:

.*
...*
**..***

但它是:

.**
*
*

我不知道为什么会这样。如果您对如何查找错误有任何提示,请告诉我。如果您需要更多信息(例如 Cel of Block 等已用结构的代码),请告诉我。我没有包括那些,因为我怀疑它们会分散对问题的注意力;即使排除使用 Block 或 Cel 的部分,它仍然存在。

注意:必要的包含已经完成,程序在 Eclipse 中编译,没有任何错误或警告。

最佳答案

除了 ls.str(line); 的每一行,您还需要以下行来清除 ls 的错误标志。

ls.clear();

一种更简单的方法可能是在读取一行后构造字符串流,并在完成该行后将其销毁。

while(getline(ifs, line)) {
istringstream ls(line);
// ...
}

关于c++ - Stringstream 没有按需要阅读,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/23570214/

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