 |
C++Talk.NET C++ language newsgroups
|
| View previous topic :: View next topic |
| Author |
Message |
Andrew Hilliker Guest
|
Posted: Thu Jan 29, 2004 7:15 pm Post subject: Clearing input buffer |
|
|
When you use the object methoe below to enter a series of characters in a loop,
cin.get(ch);
it is necessary to follow up the loop by clearing the buffer. How is this done?
Andrew
[ See http://www.gotw.ca/resources/clcm.htm for info about ]
[ comp.lang.c++.moderated. First time posters: Do this! ]
|
|
| Back to top |
|
 |
Peter Koch Larsen Guest
|
Posted: Fri Jan 30, 2004 9:39 am Post subject: Re: Clearing input buffer |
|
|
"Andrew Hilliker" <hillikera (AT) stlouiscity (DOT) com> skrev i en meddelelse
news:eaf43eca.0401290830.66d5500a (AT) posting (DOT) google.com...
| Quote: | When you use the object methoe below to enter a series of characters in a
loop,
cin.get(ch);
it is necessary to follow up the loop by clearing the buffer. How is this
done?
|
You can "clear" an input buffer by reading until some character occurs - eg.
a newline. If by "flushing the keyboard buffer until it is empty", there is
no way to do that in std C++. Consult the platform you are developing under.
Peter
[ See http://www.gotw.ca/resources/clcm.htm for info about ]
[ comp.lang.c++.moderated. First time posters: Do this! ]
|
|
| Back to top |
|
 |
|
|
You cannot post new topics in this forum You cannot reply to topics in this forum You cannot edit your posts in this forum You cannot delete your posts in this forum You cannot vote in polls in this forum
|
|