vote up 6 vote down star
2

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

flag

6 Answers

vote up 4 vote down check

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|flag
vote up 15 vote down

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|flag
1  
More importantly, the values might be different! (streamsize doesn't have to be int) – Roger Pate Nov 16 at 20:35
vote up 0 vote down

I like cin.clear() + fflush(stdin) better. There's an example where cin.ignore just doesn't cut it, but I can't think of it at the moment.

link|flag
vote up 0 vote down

cin.flush(); should work. On some systems it's not available and then you can use: cin.ignore(INT_MAX);

link|flag
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
vote up 0 vote down

cin.ignore(cin.rdbuf()->in_avail());

link|flag
vote up 0 vote down

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|flag

Your Answer

Get an OpenID
or
never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.