我知道混合 cin 和 getline 的常见问题。我相信这是不同的。
这是程序:
#include <iostream>
#include <cstdio>
#include <string>
using namespace std;
int main() {
int a;
string line;
cin >> a;
printf("A is '%d'\n", a);
getline(cin, line);
printf("Line is '%s'\n", line.c_str());
cout << cin.fail() << cin.eof() << cin.bad() << endl;
}
我还有一个使用 istream::getline 编写的版本。我相信这里给出的所有输入案例的结果都是相同的。
a.out < test1
A is '1'
'ine is ' abc 2
000
a.out < test2
A is '1'
Line is ' abc 2'
000
其中 test1 是$'1 abc 2\r\n'
(9 个字节),而 test2 是$'1 abc 2\n'
(8 个字节)。
我没有在 Windows 下明确完成这些测试,但我有一种预感,即输出是“如预期的那样”,即与测试 2 的输出相同。
我的问题是:解释测试1的输出。例如:为什么printf输出损坏;是否存在与行尾解释相关的可移植性问题;如何以最小的逻辑变化来修复代码。