The kbhit tag has no wiki summary.
9
votes
1answer
600 views
How to wait for a key press in Clojure
I'd like to break out of a loop when the user presses a key.
In C I'd use kbhit(). Is there a Clojure (or Java) equivalent?
4
votes
2answers
171 views
C++ loop until keystroke
If I want to loop until a keystroke there is a quite nice Windows solution:
while(!kbhit()){
//...
}
But this is neither an ISO-Function nor works on other Operating Systems except MS Win. I ...
2
votes
1answer
99 views
Is separate thread a good strategy to terminate application with background tasks by keypress?
I've a console Java application, which does some tasks in the background. Java doesn't support console kbhit() for testing if there is something in keyboard buffer and as I know all console reads and ...
1
vote
0answers
212 views
Why does kbhit() always return 0 when input is entered in the Eclipse console?
I am running Eclipse CDT (Helios) for C/C++ on Windows 7 x64. At first I was having the problem of output not appearing when run in the Eclipse console until the program exited, even though it did ...
0
votes
0answers
447 views
Detect keypress (like kbhit()) in console Java application?
I understand, that it cannot be done using built-in Java libraries so is there any library that can do that?
I have a non-gui application, that runs processing in the background and I would like to ...
0
votes
2answers
571 views
how to clear the key buffer while using kbhit() and getch()
heu so I'm using the above stated windows functions which luckily are for windows 2000 and up, but in making a game on the console I've run into a problem: as soon as a key is pressed the console gets ...
0
votes
1answer
68 views
Insert an empty space at the end of a string
I was wondering how can I insert an empty space in the string text (defined in
char *text = argv[1];)
For example, if a write:
./mar "Hello how are you"
I would like to see/
Hello how are ...