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