cin.clear() 不会重置 cin 对象

发布于 2024-12-04 12:01:57 字数 362 浏览 3 评论 0原文

我有以下循环。它应该读取数字,直到 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 chars, this loop is being repeated for ever without clearing the error state or stopping.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

2024-12-11 12:01:57

调用 clear 后,您还必须以某种方式从流中删除无效输入。这是一种方法:

 cin >> arr[index];
 if (!cin)
 {
  cin.clear();
  std::string ignoreLine; //read the invalid input into it
  std::getline(cin, ignoreLine); //read the line till next space
  index--;
  continue;
 }

这是因为当 cin 无法读取无效输入时,它会保留在流中。必须通过某种方式将其删除。我只是阅读并忽略它。

您还可以使用ignore作为:

cin.clear();
cin.ignore(std::numeric_limits<streamsize>::max(),' ');

在我看来,如果输入以空格分隔(并且如果您不想检查输入无效)。 在线文档说:

istream::忽略

istream&忽略(流大小n = 1,int delim = EOF);

提取并丢弃字符

从输入序列中提取字符并丢弃它们。

当提取完n个字符后,提取结束
丢弃或找到字符 delim 时,以先到者为准。
在后一种情况下,定界字符本身也会被提取。

After calling clear, you must also somehow remove the invalid input from the stream. Here is one way:

 cin >> arr[index];
 if (!cin)
 {
  cin.clear();
  std::string ignoreLine; //read the invalid input into it
  std::getline(cin, ignoreLine); //read the line till next space
  index--;
  continue;
 }

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:

cin.clear();
cin.ignore(std::numeric_limits<streamsize>::max(),' ');

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:

istream::ignore

istream& ignore( streamsize n = 1, int delim = EOF );

Extract and discard characters

Extracts characters from the input sequence and discards them.

The extraction ends when n characters have been extracted and
discarded or when the character delim is found, whichever comes first.
In the latter case, the delim character itself is also extracted.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文