我正在通过std::cin
循环从while
中读取行,该循环在引入EOF
时结束。退出循环后,我调用std::cin.clear()
使流恢复正常并再次读取,但它没有进入第二个循环。
我已经检查了eofbit
,并将其设置为false
。 failbit
也设置为false
,而goodbit
也设置为true
。清除后的gcout
为0
。这是我正在运行的代码:
while (getline(std::cin, person)) {
// Do stuff until I enter ^D
}
std::cin.clear();
// Adding std::cin >> person here doesn't work either
while (getline(std::cin, person)) {
// It never enters this loop
}
我在做什么错了?
答案 0 :(得分:1)
std :: cin.clear() 命令清除cin中的错误标志,以便进一步的I / O操作将正确运行。 clear方法不会将cin重置为初始值。 std :: cin是一个流,因此您只能读取一次。
在这种情况下,出于您的目的,我的建议是将读取的行存储在字符串或字符串数组中,或者以您喜欢的方式存储,然后从存储的数据中读取。