如何清除代码块中的缓冲区?

发布于 2025-01-07 21:53:14 字数 65 浏览 1 评论 0原文

我正在使用代码块,我需要一种良好且简单的方法来清除缓冲区。我使用 conio.h 库中的 getch() 进行输入。

I am using code blocks and i need a good and easy way to clear the buffer.I am using getch() form the conio.h library for input.

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

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

发布评论

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

评论(2

别忘他 2025-01-14 21:53:14

尝试这个未经测试的代码:

// send the data to cout here
...
// clear the console input:
while(_kbhit()) _getch();

// Fetch a single key:
char ch = _getch();

Try this untested code:

// send the data to cout here
...
// clear the console input:
while(_kbhit()) _getch();

// Fetch a single key:
char ch = _getch();
时间你老了 2025-01-14 21:53:14

你可以使用 fflush(stdin);清除流。

u can use fflush(stdin); to clear the stream.

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