8

如您所知,在 Windows 中使用 getch() 时,应用程序会等待您,直到您按下一个键,

如何在不冻结程序的情况下读取密钥,例如:

void main(){
  char   c;
  while(1){
  printf("hello\n");
  if (c=getch()) {
  .
  .
  .
  }  
}

谢谢你。

4

2 回答 2

11

您可以使用kbhit()来检查是否按下了某个键:

#include <stdio.h>
#include <conio.h> /* getch() and kbhit() */

int
main()
{
    char c;

    for(;;){
        printf("hello\n");
        if(kbhit()){
            c = getch();
            printf("%c\n", c);
        }
    }
    return 0;
}

更多信息在这里: http: //www.programmingsimplified.com/c/conio.h/kbhit

于 2012-11-25T01:47:04.383 回答
1

我在 Linux 的控制台应用程序中需要类似的功能,但 Linux 不提供kbhit功能。在搜索谷歌时,我发现了一个实现 -

http://www.flipcode.com/archives/_kbhit_for_Linux.shtml

于 2014-02-05T18:21:48.143 回答