std::basic_streambuf::uflow
来自cppreference.com
< cpp | io | basic streambuf
该页由英文版wiki使用Google Translate机器翻译而来。
该翻译可能存在错误或用词不当。鼠标停留在文本上可以看到原版本。你可以帮助我们修正错误或改进翻译。参见说明请点击这里. |
int_type uflow(); |
||
确保一个的至少一个的字符是可在输入区中的更新的指针的输入区(如果需要的话)。在成功返回的值,该字符和进步的“一个字符的指针”。失败返回traits::eof().
原文:
Ensures that at least one character is available in the input area by updating the pointers to the input area (if needed). On success returns the value of that character and advances the value of the get pointer by one character. On failure returns traits::eof().
该函数可能更新
gptr
,egptr
和eback
定义新加载的数据(如有的话)的位置的指针。发生故障时,该功能可确保无论是gptr() == nullptr或gptr() == egptr.原文:
The function may update
gptr
, egptr
and eback
pointers to define the location of newly loaded data (if any). On failure, the function ensures that either gptr() == nullptr or gptr() == egptr.的函数调用基类版本
underflow
。派生类可以重载这个函数来取回区耗尽的情况下,允许更新.原文:
The base class version of the function calls
underflow
. The derived classes may override this function to allow updates to the get area in the case of exhaustion.目录 |
[编辑] 参数
(无)
[编辑] 返回值
“的性格,”指针所指向的值,然后才由一个先进的,或traits::eof()否则.....
原文:
The value of the character that was pointed to by the get pointer before it was advanced by one, or traits::eof() otherwise.
的基类版本的函数返回值返回
underflow
.原文:
The base class version of the function returns the value returned by
underflow
.[编辑] 请注意
公共职能std::streambuf调用这个函数,只有当gptr() == nullptr或gptr() >= egptr().
原文:
The public functions of std::streambuf call this function only if gptr() == nullptr or gptr() >= egptr().
[编辑] 示例
本章尚未完成 原因:暂无示例 |
[编辑] 另请参阅
[虚]</div></div>
|
相关的输入序列读取字符的get区 原文: reads characters from the associated input sequence to the get area (虚拟保护成员函数) |
[虚]</div></div>
|
相关的输出序列中写入字符认沽区域 原文: writes characters to the associated output sequence from the put area (虚拟保护成员函数) |