我正在编写一个 C++ CLI 应用程序,如何检测用户是否按下了任何键。我已经在 c# 中看到过,但是如何在 c++ 中实现
while(1)
{
while(/* code to check if any key is pressed*/)
{ //rest of the code
// sleep function
}
}
提示:就像在 CLI 游戏中,当按键被按下时移动或采取某些动作,或者如果没有输入则不做任何事情。