std::streamsize
来自cppreference.com
该页由英文版wiki使用Google Translate机器翻译而来。
该翻译可能存在错误或用词不当。鼠标停留在文本上可以看到原版本。你可以帮助我们修正错误或改进翻译。参见说明请点击这里. |
在头文件 <ios> 中定义
|
||
typedef /*unspecified*/ streamsize; |
||
的类型
std::streamsize
是一个带符号的整数类型,用来表示在一个I / O操作的I / O缓冲器的大小传输的字符的数目。它是用来作为一个符号的对应物std::size_t,类似于POSIX类型ssize_t
.原文:
The type
std::streamsize
is a signed integral type used to represent the number of characters transferred in an I/O operation or the size of an I/O buffer. It is used as a signed counterpart of std::size_t, similar to the POSIX type ssize_t
.除std::strstreambuf的建设者,负值
std::streamsize
从来没有用了原文:
Except in the constructors of std::strstreambuf, negative values of
std::streamsize
are never used.[编辑] 另请参阅
通过上次未格式化输入操作提取的字符数返回 原文: returns number of characters extracted by last unformatted input operation (公共成员函数of std::basic_istream )
| |
提取物和丢弃给定字符的字符,直到被发现 原文: extracts and discards characters until the given character is found (公共成员函数of std::basic_istream )
| |
提取的字符块 (公共成员函数of std::basic_istream )
| |
插入的字符块 (公共成员函数of std::basic_ostream )
|