Namespaces
Variants

std:: ferror

From cppreference.net
< cpp ‎ | io ‎ | c
定义于头文件 <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); // 非法的UTF-8字符序列
    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) // 尝试以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