std::basic_ios::rdstate
来自cppreference.com
该页由英文版wiki使用Google Translate机器翻译而来。
该翻译可能存在错误或用词不当。鼠标停留在文本上可以看到原版本。你可以帮助我们修正错误或改进翻译。参见说明请点击这里. |
iostate rdstate() const; |
||
返回当前流中的错误状态.
原文:
Returns the current stream error state.
目录 |
[编辑] 参数
(无)
[编辑] 返回值
当前流中的错误状态。它是一个位掩码的类型,可以是以下常量的组合:
原文:
current stream error state. It is a bitmask type and can be a combination of the following constants:
常数
|
Explanation |
goodbit | 没有错误
|
badbit | 无法收回的流错误
|
failbit | 输入/输出操作失败,(格式化或提取错误)
原文: input/output operation failed (formatting or extraction error) |
eofbit | 相关的输入序列中已达到文件结束
原文: associated input sequence has reached end-of-file |
[编辑] 示例
本章尚未完成 原因:暂无示例 |
[编辑] 另请参阅
设置状态标志 (公共成员函数) | |
清除错误和EOF标志 (公共成员函数) |