- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
这是一个用于解析文本文件的示例,问题是如果我在内部 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/
我重载了 operator", str); // googletest test //Second test ss.str("");ss.clear(); //Mandatory if 'ss' ne
我有这个代码,想知道是否有可能让 stringstream 将 uint8_t 视为数字而不是字符? uint8_t s; std::stringstream sstream( "255" ); ss
函数 fprintf 写入 FILE*。我有一个写入 stringstream 的 debugPrint 函数。我不想更改我的功能,因为它在很多地方都被使用,而且它会破坏代码。 如何将字符串流传递给
我知道 stringstream 可以用 stringstream::str() 更新,但是如果之后我在 stringstream 中输入其他内容,它没有按预期工作。以下片段演示了该现象: #incl
我希望 stringstream 有一个从 string&& 窃取其初始内容的构造函数。 STL中通常不存在这种跨物种的“move 构造函数”吗?如果没有,为什么不呢? 最佳答案 有历史,令人失望。但
我什么时候使用 std::istringstream、std::ostringstream 和 std::stringstream 以及为什么我不应该只使用std::stringstream 在每个场
考虑以下代码,它编译并运行: #include #include struct Foo {}; void operator>>(std::istream &, Foo) { } int main(
考虑: std::string s_a, s_b; std::stringstream ss_1, ss_2; // at this stage: // ss_1 and ss
关闭。这个问题不符合Stack Overflow guidelines .它目前不接受答案。 这个问题似乎是题外话,因为它缺乏足够的信息来诊断问题。 更详细地描述您的问题或include a min
这个问题在这里已经有了答案: Why is "using namespace std;" considered bad practice? (42 个回答) 关闭 9 年前。 我是 C++ 的新手,
伙计们,实际上我想在这里做的是,当我输入 3,12,36 时,输出将是: 3 12 36 但是在这里我很难让它输出所有的答案。我一直在做的是,当您输入 3,12,36 时,它只会输出 3 12,如果您
我这里有这段代码 cout > s; stringstream is(s); is >> x >> y; cout > x cin >> y 关于C++ Strings
我遇到了以下代码的问题。 short int decrypted0[] = {0,2}; string message = "22"; string string0 =""; for(i=0;i
我正在尝试一个“stringstream”程序,它是这样的: #include #include using namespace std; int main() { int x; char ch;
我的印象是未格式化的 write()会将字节逐字复制到 ostream它被称为。另一位 SO 用户还告诉我“写入函数不会跳过任何内容”。如果您在使用 stringstream 时遇到问题,问一个问题。
这是一个用于解析文本文件的示例,问题是如果我在内部 while 循环之外声明“string parm”,那么一行中的最后一个字符串总是得到双重输出(这只发生在某些空格字符出现在“source.txt”
这个问题在这里已经有了答案: How to clear stringstream? [duplicate] (1 个回答) 关闭 9 年前。 例如我有这段代码: #include #include
#include #include #include #include using namespace std; stack aStack; s
我试图仅将 char 数组中的数字添加到 stringstream 对象中。代码是: char[50] buffer = ''; stringstream str; int page; str > p
为什么这个程序打印出空白? string str; stringstream ss(str); ss << "A string"; cout << str; // just blank
我是一名优秀的程序员,十分优秀!