我是mac的cpp新手。 当我在程序中使用kbhit()时出错。 我使用#include但也得到了错误,所以我搜索并使用#include进行测试,但错误仍然存在。 所以PLZ帮助我。 提前谢谢。
答案 0 :(得分:1)
kbhit()是非标准的。事实上,我不相信有一个检测键盘输入的标准功能。您可以做的最好的事情是使用例如stdin读取一个字符。 fgetc,并希望它不会从其他地方重定向。
答案 1 :(得分:1)
不知道这是否可以在Mac上运行,但是这里有一些我用来在Linux上获得单个按键的代码。
int mygetch() {
char ch;
int error;
static struct termios Otty, Ntty;
fflush(stdout);
tcgetattr(0, &Otty);
Ntty = Otty;
Ntty.c_iflag = 0; /* input mode */
Ntty.c_oflag = 0; /* output mode */
Ntty.c_lflag &= ~ICANON; /* line settings */
#if 1
/* disable echoing the char as it is typed */
Ntty.c_lflag &= ~ECHO; /* disable echo */
#else
/* enable echoing the char as it is typed */
Ntty.c_lflag |= ECHO; /* enable echo */
#endif
Ntty.c_cc[VMIN] = CMIN; /* minimum chars to wait for */
Ntty.c_cc[VTIME] = CTIME; /* minimum wait time */
#if 1
/*
* use this to flush the input buffer before blocking for new input
*/
#define FLAG TCSAFLUSH
#else
/*
* use this to return a char from the current input buffer, or block if
* no input is waiting.
*/
#define FLAG TCSANOW
#endif
if ((error = tcsetattr(0, FLAG, &Ntty)) == 0) {
error = read(0, &ch, 1 ); /* get char from stdin */
error += tcsetattr(0, FLAG, &Otty); /* restore old settings */
}
return (error == 1 ? (int) ch : -1 );
}