std::basic_streambuf::showmanyc
来自cppreference.com
< cpp | io | basic streambuf
该页由英文版wiki使用Google Translate机器翻译而来。
该翻译可能存在错误或用词不当。鼠标停留在文本上可以看到原版本。你可以帮助我们修正错误或改进翻译。参见说明请点击这里. |
protected: std::streamsize showmanyc(); |
||
估计可在相关联的字符序列的输入的字符数。
underflow()
保证不会返回traits::eof(),直到至少,提取的字符数.原文:
Estimates the number of characters available for input in the associated character sequence.
underflow()
is guaranteed not to return traits::eof() until at least that many characters are extracted.目录 |
[编辑] 参数
(无)
[编辑] 返回值
序列中提供的字符的数目,或-1如果没有可用的字符是。在这种情况下,
underflow()
uflow()
将失败.原文:
The number of characters available in the sequence, or -1 if no characters are available. In that case,
underflow()
and uflow()
will fail.基类版本返回0.
[编辑] 示例
本章尚未完成 原因:暂无示例 |
[编辑] 另请参阅
立即可用的字符在get区域获得的数目 原文: obtains the number of characters immediately available in the get area (公共成员函数) | |
[虚]</div></div>
|
任选地提供可用于从文件中输入的字符数 原文: optionally provides the number of characters available for input from the file (虚拟保护成员函数of std::basic_filebuf )
|