Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
关于如何在 C++ 中实现“按任意键继续”的任何想法?
根据我的理解,对于任何输入流功能,都需要用户点击“回车”来阅读。
但是我如何让它像“每当一个键被按下时,它会在不按下回车键的情况下进入下一个阶段?”
顺便说一下,工作站是Linux
非常感谢
这在标准 C++ 中是不可能的,因为它是特定于操作系统的。在 Linux 上,您可以循环使用 Curses 和 getch,直到获得一个字符。或者您可以简单地使用“按回车键继续”
http://linux.die.net/man/3/getch