std::fgetc, std::getc
来自 cppreference.com
定义在头文件 <cstdio> 中 |
||
从给定的输入流中读取下一个字符。
内容 |
[编辑] 参数
stream | - | 从中读取字符 |
[编辑] 返回值
成功时返回获得的字符,失败时返回 EOF。
如果失败是由文件末尾条件引起的,则还会在 stream 上设置 eof 指示器(参见 std::feof())。如果失败是由其他错误引起的,则会设置 stream 上的 error 指示器(参见 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("File opening failed"); return is_ok; } int c; // Note: int, not char, required to handle EOF while ((c = std::fgetc(fp)) != EOF) // Standard C I/O file reading loop std::putchar(c); if (std::ferror(fp)) std::puts("I/O error when reading"); else if (std::feof(fp)) { std::puts("End of file reached successfully"); is_ok = EXIT_SUCCESS; } std::fclose(fp); return is_ok; }
输出
End of file reached successfully
[编辑] 另请参阅
(C++11 中已弃用)(C++14 中已移除) |
从 stdin 读取字符字符串 (函数) |
将字符写入文件流 (函数) | |
将字符放回文件流 (函数) | |
C 文档 for fgetc, getc
|