std::fgetc, std::getc

来自cppreference.com
< cpp‎ | io‎ | c
 
 
 
 
在标头 <cstdio> 定义
int fgetc( std::FILE* stream );
int getc( std::FILE* stream );

读取来自给定输入流的下个字符。

参数

stream - 读取字符的来源

返回值

成功时为获得的字符,失败时为 EOF

若因文件尾条件而导致失败,则另外设置 stream 上的文件尾指示器(见 std::feof())。若因某些其他错误而导致失败,则设置 stream 上的错误指示器(见 std::ferror())。

示例

#include <cstdio>
#include <cstdlib>
 
int main()
{
    int is_ok = EXIT_FAILURE;
    FILE* fp = std::fopen("/tmp/test.txt", "w+");
    if (!fp)
    {
        std::perror("打开文件失败");
        return is_ok;
    }
 
    int c; // 注意:是 int 而非 char,处理 EOF 所必须
    while ((c = std::fgetc(fp)) != EOF) // 标准 C I/O 文件读取循环
        std::putchar(c);
 
    if (std::ferror(fp))
        std::puts("读取时发生了 I/O 错误");
    else if (std::feof(fp))
    {
        std::puts("成功抵达文件末尾");
        is_ok = EXIT_SUCCESS;
    }
 
    std::fclose(fp);
    return is_ok;
}

输出:

成功抵达文件末尾

参阅

(C++11 中弃用)(C++14 中移除)
stdin 读取字符串
(函数)
写字符到文件流
(函数)
把字符放回文件流
(函数)