cin.clear() 不会重置 cin 对象
我有以下循环。它应该读取数字,直到 EndOfFile
,或者用户输入 -999
int arr[100];
int index;
for (index = 0; index < 100; index++)
{
cin >> arr[index];
if (!cin)
{
cin.clear();
index--;
continue;
}
if (arr[index] == -999)
{
break;
}
}
当用户输入无效的内容(例如某些 char
)时,此循环将永远重复,而不会 < code>清除错误状态或停止。
I have the following loop. It should read numbers until EndOfFile
, or the user input -999
int arr[100];
int index;
for (index = 0; index < 100; index++)
{
cin >> arr[index];
if (!cin)
{
cin.clear();
index--;
continue;
}
if (arr[index] == -999)
{
break;
}
}
When the user input an invalid thing, such as some char
s, this loop is being repeated for ever without clear
ing the error state or stopping.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
调用
clear
后,您还必须以某种方式从流中删除无效输入。这是一种方法:这是因为当 cin 无法读取无效输入时,它会保留在流中。必须通过某种方式将其删除。我只是阅读并忽略它。
您还可以使用
ignore
作为:在我看来,如果输入以空格分隔(并且如果您不想检查输入无效)。 在线文档说:
After calling
clear
, you must also somehow remove the invalid input from the stream. Here is one way:It's because when
cin
fails to read the invalid input, it remains there in the stream. It has to be removed, by some means. I just read and ignore it.You can also use
ignore
as:which is better in my opinion provided inputs are space separated (and if you don't want to inspect the invalid input). The online doc says: