How do I clear the cin buffer in C++?
|
feedback
|
|
possibly:
this would read in and ignore everything until Also: You probably want to do a: | |||||||
feedback
|
|
I would prefer the C++ size constraints over the C versions:
| |||||
feedback
|
|
How about:
| ||||
feedback
|
| ||||
|
feedback
|
|
The following should work:
On some systems it's not available and then you can use:
| |||||||||
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??? | |||||
feedback
|
|
I prefer:
There's an example where cin.ignore just doesn't cut it, but I can't think of it at the moment. It was a while ago when I needed to use it (with Mingw). However, fflush(stdin) is undefined behavior according to the standard. fflush() is only meant for output streams. fflush(stdin) only seems to work as expected on Windows (with GCC and MS compilers at least) as an extension to the C standard. So, if you use it, your code isn't going to be portable. See Using fflush(stdin). Also, see http://ubuntuforums.org/showpost.php?s=9129c7bd6e5c8fd67eb332126b59b54c&p=452568&postcount=1 for an alternative. | |||||
feedback
|