_getc_nolock, _getwc_nolock
读取流中的字符。
int _getc_nolock(
FILE *stream
);
wint_t _getwc_nolock(
FILE *stream
);
参数
- stream
输入流。
返回值
请参见 getc, getwc。
备注
这些函数与 getc 和 getwc 相同,但它们不锁定调用线程。 ,因为它们不会产生开销锁定其他线程,也可能是更快。 在线程安全的上下文仅使用这些功能 (如单线程应用程序或调用的大小处理已线程隔离的位置。
一般文本例程映射
Tchar.h 实例 |
未定义的 _UNICODE 和 _MBCS |
定义的 _MBCS |
定义的 _UNICODE |
---|---|---|---|
_gettc_nolock |
getc_nolock |
getc_nolock |
getwc_nolock |
要求
实例 |
必需的头 |
---|---|
getc_nolock |
stdio.h |
getwc_nolock |
stdio.h 或 wchar.h |
有关更多兼容性信息,请参见中介绍的 兼容性 。
示例
// crt_getc_nolock.c
// Use getc to read a line from a file.
#include <stdio.h>
int main()
{
char buffer[81];
int i, ch;
FILE* fp;
// Read a single line from the file "crt_getc_nolock.txt".
fopen_s(&fp, "crt_getc_nolock.txt", "r");
if (!fp)
{
printf("Failed to open file crt_getc_nolock.txt.\n");
exit(1);
}
for (i = 0; (i < 80) && ((ch = getc(fp)) != EOF)
&& (ch != '\n'); i++)
{
buffer[i] = (char) ch;
}
// Terminate string with a null character
buffer[i] = '\0';
printf( "Input was: %s\n", buffer);
fclose(fp);
}
输入:crt_getc_nolock.txt
Line the first.
Line the second.
Output
Input was: Line the first.