如您所知,在 Windows 中使用 getch() 时,应用程序会等待您,直到您按下一个键,
如何在不冻结程序的情况下读取密钥,例如:
void main(){
char c;
while(1){
printf("hello\n");
if (c=getch()) {
.
.
.
}
}
谢谢你。
您可以使用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
我在 Linux 的控制台应用程序中需要类似的功能,但 Linux 不提供kbhit
功能。在搜索谷歌时,我发现了一个实现 -