C++循环直到击键
如果我想循环直到击键,有一个非常好的 Windows 解决方案:
while(!kbhit()){
//...
}
但这既不是 ISO 函数,也不能在除 MS Win 之外的其他操作系统上工作。我找到了其他跨平台解决方案,但它们非常混乱且臃肿 - 难道没有另一种简单方法来管理这个问题吗?
If I want to loop until a keystroke there is a quite nice Windows solution:
while(!kbhit()){
//...
}
But this is neither an ISO-Function nor works on other Operating Systems except MS Win. I found other cross-plattform solutions but they are quite confusing and bloated - isn't there another easy way to manage this?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
不,C++ 标准没有定义“键盘”和“击键”等概念,因为并非所有系统都有这样的东西。使用可移植库,也许 ncurses 应该有一些东西。
No, C++ standard doesn't define concepts like 'keyboard' and 'keystrokes', because not all systems have such things. Use a portable library, maybe ncurses should have something.
您可以将下一版本的 kbhit() 用于 *nix 操作系统:
You can use the next version of kbhit() for *nix OSes: