std::basic_istream::gcount
来自cppreference.com
< cpp | io | basic istream
![]() |
该页由英文版wiki使用Google Translate机器翻译而来。
该翻译可能存在错误或用词不当。鼠标停留在文本上可以看到原版本。你可以帮助我们修正错误或改进翻译。参见说明请点击这里. |
std::streamsize gcount() const; |
||
返回所提取的最后的未格式化的输入操作中的字符的数目.
原文:
Returns the number of characters extracted by the last unformatted input operation.
basic_istream
下面的成员函数的值更改为随后的gcount()
电话原文:
The following member functions of
basic_istream
change the value of subsequent gcount()
calls:下面的函数设置
gcount()
为零原文:
The following functions set
gcount()
to zero:目录 |
[编辑] 参数
(无)
[编辑] 返回值
所提取的最后的未格式化的输入操作中的字符数目
原文:
number of characters extracted by the last unformatted input operation
[编辑] 示例
本章尚未完成 原因:暂无示例 |
[编辑] 另请参阅
本章尚未完成 |