std::basic_ios::setstate
来自cppreference.com
该页由英文版wiki使用Google Translate机器翻译而来。
该翻译可能存在错误或用词不当。鼠标停留在文本上可以看到原版本。你可以帮助我们修正错误或改进翻译。参见说明请点击这里. |
void setstate( iostate state ); |
||
设置流的错误标志
state
除了目前设置标志。从本质上要求clear(rdstate() | state)。可能会抛出一个异常.原文:
Sets the stream error flags
state
in addition to currently set flags. Essentially calls clear(rdstate() | state). May throw an exception.目录 |
[编辑] 参数
state | - | 流错误状态标志设置。它可以是一个组合的以下常量:
原文: stream error state flags to set. It can be a combination of the following constants:
|
[编辑] 返回值
(无)
[编辑] 示例
本章尚未完成 原因:暂无示例 |
[编辑] 另请参阅
返回状态标志 (公共成员函数) | |
清除错误和EOF标志 (公共成员函数) |