_kbhit
콘솔에 대한 키보드 입력을 검사합니다.
중요 |
---|
이 API는 Windows 런타임에서 실행 되는 응용 프로그램에서 사용할 수 없습니다.자세한 내용은 /zw에 지원 되는 CRT 함수. |
int _kbhit( void );
반환 값
_kbhit키를 누르면 0이 아닌 값을 반환 합니다.그렇지 않으면 0을 반환합니다.
설명
_kbhit 콘솔 최근 키 입력을 검사 합니다.함수는 0이 아닌 값을 반환 하는 경우 버퍼에 키 입력을 기다리고 있습니다.프로그램 다음 호출할 수 있습니다 _getch 또는 _getche 키 입력을 가져올 수 있습니다.
요구 사항
루틴 |
필수 헤더 |
---|---|
_kbhit |
<conio.h> |
자세한 호환성에 대한 내용은 호환성 소개에서 합니다.
라이브러리
모든 버전의 C 런타임 라이브러리.
예제
// crt_kbhit.c
// compile with: /c
/* This program loops until the user
* presses a key. If _kbhit returns nonzero, a
* keystroke is waiting in the buffer. The program
* can call _getch or _getche to get the keystroke.
*/
#include <conio.h>
#include <stdio.h>
int main( void )
{
/* Display message until key is pressed. */
while( !_kbhit() )
_cputs( "Hit me!! " );
/* Use _getch to throw key away. */
printf( "\nKey struck was '%c'\n", _getch() );
}
샘플 출력
Hit me!! Hit me!! Hit me!! Hit me!! Hit me!! Hit me!! Hit me!!
Key struck was 'q'