_getch、_getwch
从控件中获取字符而无需回显。
重要
此 API 不能用于在 Windows 运行时中执行的应用程序。有关详细信息,请参见 CRT functions not supported with /ZW(CRT 函数不支持使用/ZW)。
int _getch( void );
wint_t _getwch( void );
返回值
返回读取的字符。 无错误返回。
备注
_getch 和_getwch 的功能是从控件读取单个字符,而无需回显字符。 这些函数均不可用于读取 CTRL+C。 在读取功能键或箭头键时,每个函数都将被调用两次;第一次调用返回 0 或 0xE0,第二次调用返回实际的键码。
这些函数将锁定调用线程,因此线程安全。 有关非锁定版本,请参见 _getch_nolock、_getwch_nolock。
一般文本例程映射
Tchar.h 例程 |
未定义 _UNICODE 和 _MBCS |
已定义 _MBCS |
已定义 _UNICODE |
---|---|---|---|
_gettch |
_getch |
_getch |
_getwch |
要求
例程 |
必需的标头 |
---|---|
_getch |
<conio.h> |
_getwch |
<conio.h> 或 <wchar.h> |
有关兼容性的更多信息,请参见兼容性。
示例
// crt_getch.c
// compile with: /c
// This program reads characters from
// the keyboard until it receives a 'Y' or 'y'.
#include <conio.h>
#include <ctype.h>
int main( void )
{
int ch;
_cputs( "Type 'Y' when finished typing keys: " );
do
{
ch = _getch();
ch = toupper( ch );
} while( ch != 'Y' );
_putch( ch );
_putch( '\r' ); // Carriage return
_putch( '\n' ); // Line feed
}
.NET Framework 等量
不适用。 若要调用标准 C 函数,请使用 PInvoke。 有关更多信息,请参见平台调用示例。