std::basic_filebuf::uflow
来自cppreference.com
< cpp | io | basic filebuf
该页由英文版wiki使用Google Translate机器翻译而来。
该翻译可能存在错误或用词不当。鼠标停留在文本上可以看到原版本。你可以帮助我们修正错误或改进翻译。参见说明请点击这里. |
protected: virtual int_type uflow() |
||
像
underflow()
的行为,但如果underflow()
成功(不返回Traits::eof()),接着进入下一个指针的获取区域。换句话说,消耗underflow()
得到的字符之一原文:
Behaves like the
underflow()
, except that if underflow()
succeeds (does not return Traits::eof()), then advances the next pointer for the get area. In other words, consumes one of the characters obtained by underflow()
.目录 |
[编辑] 参数
(无)
[编辑] 返回值
的值字符读取和消耗在成功的情况下,或Traits::eof()在失败的情况下的.
原文:
The value of the character that was read and consumed in case of success, or Traits::eof() in case of failure.
[编辑] 示例
本章尚未完成 原因:暂无示例 |
[编辑] 另请参阅
[虚]</div></div>
|
相关的输入序列读取字符的get区和进步的下一个指针 原文: reads characters from the associated input sequence to the get area and advances the next pointer (虚拟保护成员函数of std::basic_streambuf )
|
[虚]</div></div>
|
读取相关的文件 (虚拟保护成员函数) |
[虚]</div></div>
|
认沽区相关的文件中写入字符 原文: writes characters to the associated file from the put area (虚拟保护成员函数) |