gpt4 book ai didi

c++ - Stringstream 在一行中双输出最后一个字符串?

转载 作者:行者123 更新时间:2023-11-28 07:41:17 30 4
gpt4 key购买 nike

这是一个用于解析文本文件的示例,问题是如果我在内部 while 循环之外声明“string parm”,那么一行中的最后一个字符串总是得到双重输出(这只发生在某些空格字符出现在“source.txt”中每一行的末尾,如果不是一切正常的话)。我可以通过删除“source.txt”中附加的空格字符或通过在内部 while 循环中声明“string parm”来解决这个问题,但我仍然无法找出导致双重输出的原因,有什么想法吗?

#include <iostream>
#include <string>
#include <fstream>
#include <sstream>

using namespace std;

void main(int argc, char* argv[])
{
string f_string = "source.txt";

ifstream inputFile(f_string, ifstream::in);

char line[1024];

while(inputFile.getline(line, 1023))
{
stringstream ss(stringstream::in | stringstream::out);
ss.str(line);

string parm; // final string will preserved ???

while(!ss.eof())
{
//string parm; final string won't get double output if declare here ...

ss >> parm;
cout << parm << endl;

if(parm.compare("value") == 0)
cout << "Got value." << endl;
}

cout << endl;
}
}

像这样使用 source.txt:

1st name_1 value    
2nd name_2 value
3rd name_3

如果每行末尾出现一些空格字符,我得到这个:

1st
name_1
value
Got value.
value
Got value.

2nd
name_2
value
Got value.
value
Got value.

3rd
name_3
name_3

如果不是或者如果在内部 while 循环中声明了“string parm”,我会得到一个更合理的结果:

1st
name_1
value
Got value.

2nd
name_2
value
Got value.

3rd
name_3

最佳答案

修改代码如下:

while(ss >> parm)
{
cout << parm << endl;

if(parm.compare("value") == 0)
cout << "Got value." << endl;
}

我怀疑问题出在 while(!ss.eof()) 上。参见 Why is iostream::eof inside a loop condition considered wrong?以获得详细的解释。

//string parm;   final string won't get double output if declare here

如果在循环内声明string parm,每次循环都会得到一个空字符串。当 ss >> parm 失败时,不会将任何内容读入字符串并输出空字符串。

关于c++ - Stringstream 在一行中双输出最后一个字符串?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/15802084/

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