_getch, _getwch
从控件中获取其字符,而无需 echo。
重要
此 API 不能在运行时的窗口执行的应用程序。有关更多信息,请参见 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。 有关更多信息,请参见 平台调用示例。