_getche_nolock, _getwche_nolock

从控件获取个字符具有 echo 的和不锁定线程。

重要

此 API 不能在运行时的窗口执行的应用程序。有关更多信息,请参见 CRT 函数不支持与 /ZW

int _getche_nolock( void );
wint_t _getwche_nolock( void );

返回值

返回读取的字符。 无错误返回。

备注

_getche_nolock 和 _getwche_nolock 与 _getche 和 _getwche 与相同,但从由其他的干扰不受保护的这些线程。 因为它们不会产生开销锁定其他线程,也可能是更快。 在线程安全的上下文仅使用这些功能 (如单线程应用程序或调用的大小处理已线程隔离的位置。

一般文本例程映射

Tchar.h 实例

未定义的_UNICODE 和_MBCS

定义的_MBCS

定义的_UNICODE

_gettche_nolock

_getche_nolock

_getch_nolock

_getwche_nolock

要求

实例

必需的标头

_getche_nolock

<conio.h>

_getwche_nolock

<conio.h> 或 <wchar.h>

有关更多兼容性信息,请参见中介绍的 兼容性

示例

// crt_getche_nolock.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 = _getche_nolock();
      ch = toupper( ch );
   } while( ch != 'Y' );

   _putch_nolock( ch );
   _putch_nolock( '\r' );    // Carriage return
   _putch_nolock( '\n' );    // Line feed 
}
  

.NET Framework 等效

不适用。 若要调用标准 C 函数,请使用 PInvoke。 有关更多信息,请参见 平台调用示例

请参见

参考

控制台和端口I/O

_cgets, _cgetws

getc, getwc

_ungetch, _ungetwch, _ungetch_nolock, _ungetwch_nolock