_getchar_nolock, _getwchar_nolock
표준 입력에서 문자를 읽습니다.
int _getchar_nolock( void );
wint_t _getwchar_nolock( void );
반환 값
자세한 내용은 getchar, getwchar를 참조하십시오.
설명
_getchar_nolock및 _getwchar_nolock 동일 getchar 및 getwchar 다른 스레드에 의해 방해를 보호 되지 않은 경우를 제외 하 고.다른 스레드 잠금 오버 헤드를 유발 하지 않습니다 때문에 빠를 수 있습니다.스레드로부터 안전한 컨텍스트 단일 스레드 응용 프로그램 또는 격리 스레드 호출 범위 이미 처리 하는 위치에 이러한 함수를 사용 합니다.
일반 텍스트 루틴 매핑
Tchar.h 루틴 |
_UNICODE 및 _mbcs가 정의 되어 있지 않습니다 |
_Mbcs가 정의 |
_Unicode가 정의 |
---|---|---|---|
_gettchar_nolock |
_getchar_nolock |
_getchar_nolock |
_getwchar_nolock |
요구 사항
루틴 |
필수 헤더 |
---|---|
_getchar_nolock |
<stdio.h> |
_getwchar_nolock |
<stdio.h> 또는 <wchar.h> |
콘솔에서 지원 되지 않습니다 Windows 스토어 응용 프로그램입니다.콘솔에 연결 된 표준 스트림 핸들 stdin, stdout, 및 stderr, C 런타임 함수를 사용 하기 전에 이동 해야 Windows 스토어 응용 프로그램입니다.자세한 호환성에 대 한 내용은 호환성 소개에서 합니다.
예제
// crt_getchar_nolock.c
// Use _getchar_nolock to read a line from stdin.
#include <stdio.h>
int main()
{
char buffer[81];
int i, ch;
for (i = 0; (i < 80) && ((ch = _getchar_nolock()) != EOF)
&& (ch != '\n'); i++)
{
buffer[i] = (char) ch;
}
// Terminate string with a null character
buffer[i] = '\0';
printf( "Input was: %s\n", buffer);
}