up vote 12 down vote favorite
6
share [g+] share [fb]

How do I clear the cin buffer in C++?

link|improve this question
feedback

7 Answers

up vote 16 down vote accepted

possibly:

std::cin.ignore(INT_MAX);

this would read in and ignore everything until EOF. (you can also supply a second argument which is the character to read until (ex: '\n' to ignore a single line).

Also: You probably want to do a: std::cin.clear(); after this too to reset the stream state.

link|improve this answer
2  
(Old I know.) Clear before, rather, so the stream is put into a good state where it can operate on its buffer. – GMan Oct 3 '10 at 10:33
Thanks, GMan! Did it the wrong way, first, and spent quite some time looking for my mistake. – codethief Nov 17 '11 at 23:35
feedback

I would prefer the C++ size constraints over the C versions:

// Ignore to the end of file
cin.ignore(std::numeric_limits<std::streamsize>::max())

// Ignore to the end of line
cin.ignore(std::numeric_limits<std::streamsize>::max(), '\n')
link|improve this answer
5  
More importantly, the values might be different! (streamsize doesn't have to be int) – Roger Pate Nov 16 '09 at 20:35
feedback

How about:

cin.ignore(cin.rdbuf()->in_avail());
link|improve this answer
the streambuf's in_avail() function is unreliable, and many implementations just return zero. See: connect.microsoft.com/VisualStudio/feedback/details/509337/… gnu's libc++ is similar – James Caccese Jun 3 '11 at 21:50
feedback
int i;
  cout << "Please enter an integer value: ";

  // cin >> i; leaves '\n' among possible other junk in the buffer. 
  // '\n' also happens to be the default delim character for getline() below.
  cin >> i; 
  if (cin.fail()) 
  {
    cout << "\ncin failed - substituting: i=1;\n\n";
    i = 1;
  }
  cin.clear(); cin.ignore(INT_MAX,'\n'); 

  cout << "The value you entered is: " << i << " and its double is " << i*2 << ".\n\n";

  string myString;
  cout << "What's your full name? (spaces inclded) \n";
  getline (cin, myString);
  cout << "\nHello '" << myString << "'.\n\n\n";
link|improve this answer
feedback

The following should work:

cin.flush();

On some systems it's not available and then you can use:

cin.ignore(INT_MAX);
link|improve this answer
1  
why manually write a loop when you can tell ignore the read INT_MAX chars until it reaches EOF (the default value of the second param). – Evan Teran Nov 2 '08 at 17:39
You are right :) – Gunnar Steinn Nov 2 '08 at 17:50
Gunnar, might be better to edit your post to reflect this, just in case. – Dana the Sane Nov 2 '08 at 20:08
feedback

Many of the answers were "ignore()", but ignore() doen't mean flushing the buffer. If there is nothing left in the buffer, ignore() wait for more inputs (at least a delimiter, like '\n').

The buffer flushing method is simply istream::sync(). Why no one's ever mentioned it???

link|improve this answer
I guess it wasn't mentioned because it's bad. Found this article with the following sentence: Why it has such a function is under debate, because nobody can agree on what it should be doing. Even Bjarne Stroustrup himself incorrectly stated that it discards all characters in the stream then followed by: The bad news is that the C++ standard doesn't require sync to do anything like discarding extraneous characters. This solution is non-portable this it's enough to rule this out. – Shadow Wizard Nov 7 '11 at 12:41
@Shadow Wizard, thank you for the link to an in-depth analysis. – Harusada Nov 8 '11 at 13:58
feedback

I prefer:

cin.clear();
fflush(stdin);

There's an example where cin.ignore just doesn't cut it, but I can't think of it at the moment.

link|improve this answer
fflush(stdin); is Undefined Behavior (in the C programming language), explicitly stated so in 7.18.5.2/2 – Cubbi Jan 15 '11 at 5:48
feedback

Your Answer

 
or
required, but never shown