当前位置: 技术问答>linux和unix
取按键问题
来源: 互联网 发布时间:2015-11-13
本文导语: while(1) { /* Some code here */ printf("Press ESC to stopn"); } printf("Stoped"); /* Some code here */该如何写,才能实现不停地输出"Press a key to stop",直到用户按下ESC键为止? | 把终端设置为raw mode,每次...
while(1)
{
/* Some code here */
printf("Press ESC to stopn");
}
printf("Stoped");
/* Some code here */该如何写,才能实现不停地输出"Press a key to stop",直到用户按下ESC键为止?
{
/* Some code here */
printf("Press ESC to stopn");
}
printf("Stoped");
/* Some code here */该如何写,才能实现不停地输出"Press a key to stop",直到用户按下ESC键为止?
|
把终端设置为raw mode,每次检测一下有没有可读的。到网上去搜unix kbhit,记得是在UNIX Programming FAQ里。