std::basic_streambuf::snextc
来自cppreference.com
< cpp | io | basic streambuf
该页由英文版wiki使用Google Translate机器翻译而来。
该翻译可能存在错误或用词不当。鼠标停留在文本上可以看到原版本。你可以帮助我们修正错误或改进翻译。参见说明请点击这里. |
int_type snextc(); |
||
进展的一个字符,输入序列读取一个字符.
原文:
Advances the input sequence by one character and reads one character.
该函数调用
sbumpc()
前进的输入序列中。如果函数返回traits::eof()这意味着输入序列已经耗尽uflow()
不能检索更多的数据,traits::eof()返回。否则,sgetc()
以读取的字符被称为.目录 |
[编辑] 参数
(无)
[编辑] 返回值
的下一个字符的值。如果输入序列已经耗尽,traits::eof()返回.
原文:
The value of the next character. If the input sequence has been exhausted, traits::eof() is returned.
[编辑] 示例
本章尚未完成 原因:暂无示例 |
[编辑] 另请参阅
读取从输入序列中的一个字符,而不推进序列 原文: reads one character from the input sequence without advancing the sequence (公共成员函数) | |
读取一个字符的输入序列和垫款序列 原文: reads one character from the input sequence and advances the sequence (公共成员函数) |