std::ferror
来自 cppreference.com
定义在头文件 <cstdio> 中 |
||
int ferror( std::FILE* stream ); |
||
检查给定流是否存在错误。
内容 |
[编辑] 参数
stream | - | 要检查的文件流 |
[编辑] 返回值
如果文件流发生错误,则返回非零值,否则返回 0。
[编辑] 示例
运行此代码
#include <clocale> #include <cstdio> #include <cstdlib> #include <cwchar> int main() { const char *fname = std::tmpnam(nullptr); std::FILE* f = std::fopen(fname, "wb"); std::fputs("\xff\xff\n", f); // not a valid UTF-8 character sequence std::fclose(f); std::setlocale(LC_ALL, "en_US.utf8"); f = std::fopen(fname, "rb"); std::wint_t ch; while ((ch=std::fgetwc(f)) != WEOF) // attempt to read as UTF-8 std::printf("%#x ", ch); if (std::feof(f)) puts("EOF indicator set"); if (std::ferror(f)) puts("Error indicator set"); }
输出
Error indicator set
[编辑] 参见
清除错误 (函数) | |
检查是否到文件末尾 (函数) | |
检查是否发生了错误 ( std::basic_ios<CharT,Traits> 的公有成员函数) | |
C 文档 for ferror
|