std::basic_streambuf::sbumpc
来自cppreference.com
< cpp | io | basic streambuf
该页由英文版wiki使用Google Translate机器翻译而来。
该翻译可能存在错误或用词不当。鼠标停留在文本上可以看到原版本。你可以帮助我们修正错误或改进翻译。参见说明请点击这里. |
int_type sbumpc(); |
||
读取一个字符,一个字符输入序列.
原文:
Reads one character and advances the input sequence by one character.
如果输入序列读取位置不可用,则返回
uflow()
。否则,返回traits::to_int_type(*gptr()).原文:
If the input sequence read position is not available, returns
uflow()
. Otherwise returns traits::to_int_type(*gptr()).目录 |
[编辑] 参数
(无)
[编辑] 返回值
值的字符指出由“得到,如果读出的位置是不提供指针”,或traits::eof().
原文:
The value of the character pointed to by the get pointer, or traits::eof() if the read position is not available.
[编辑] 示例
本章尚未完成 原因:暂无示例 |
[编辑] 另请参阅
读取从输入序列中的一个字符,而不推进序列 原文: reads one character from the input sequence without advancing the sequence (公共成员函数) | |
,然后输入序列读取一个字符,再没有前进 原文: advances the input sequence, then reads one character without advancing again (公共成员函数) |