#include <iostream>
#include <conio.h>
int main(){
while(true){
printf("Hello World!\n");
}
return 0;
}
上述程序将无休止地打印“Hello World”.我希望一旦用户按下键盘上的“T”键,程序就会终止.
关于如何做到这一点的任何线索…….
如果我这样做的话
#include <iostream>
#include <conio.h>
int main(){
char key;
while(true){
printf("Hello World!\n");
key = getch();
if(key=='T' || key=='t'){
break;
}
}
return 0;
}
然后程序将始终等待用户按下一个键.我希望程序继续执行而不会暂停,一旦用户按下任何特定的键,程序就会终止.
顺便说一下,我的操作系统是linux(debian),我正在使用gcc.
解决方法:
conio是Windows(OP标记为Linux).这个问题经常被问到,通常会回答指向termios,例如,
> C++ Check Keypress Linux
> Check for keypress on Linux xterm ?
另一方面,ncurses提供了有用的功能 – 但除非你使用过滤器,否则屏幕将被清除.以下是要考虑的函数的有用链接:
> filter
> timeout
> napms
> getch
通过设置一个短暂的超时(比如说20毫秒),程序响应速度比任何人的反应时间都要快,而且使用的CPU也很少.
这是一个修改过的程序说明过滤器:
#include <ncurses.h>
#include <stdlib.h>
int
main(int argc, char **argv)
{
int ch = 0;
int n;
int code;
filter();
initscr();
timeout(20);
for (;;) {
move(0, 0);
for (n = 1; n < argc; ++n) {
printw("%s ", argv[n]);
}
printw("[y/n] ");
clrtoeol();
ch = getch();
if (ch == 'Y' || ch == 'y') {
code = EXIT_SUCCESS;
break;
} else if (ch == 'N' || ch == 'n') {
code = EXIT_FAILURE;
break;
}
}
endwin();
return code;
}
(检查y / n似乎比检查“t”更有用 – 随意自定义).