std::streamsize
Материал из cppreference.com
|
|
This page has been machine-translated from the English version of the wiki using Google Translate.
The translation may contain errors and awkward wording. Hover over text to see the original version. You can help to fix errors and improve the translation. For instructions click here. |
| Заголовочный файл <ios>
|
||
| typedef /*unspecified*/ streamsize; |
||
Тип
std::streamsize является подписанный интегрального типа используются для представления числа символов передается в операции ввода / вывода или размер буфера ввода / вывода. Он используется в качестве подписанных аналогом std::size_t, подобный тип POSIX ssize_t.Original:
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.The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.
You can help to correct and verify the translation. Click here for instructions.
За исключением конструкторов std::strstreambuf, отрицательные значения
std::streamsize никогда не используется.Original:
Except in the constructors of std::strstreambuf, negative values of
std::streamsize are never used.The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.
You can help to correct and verify the translation. Click here for instructions.
[править] См. также
| возвращает число символов, извлеченных по последнему неформатированный операции ввода Original: returns number of characters extracted by last unformatted input operation The text has been machine-translated via Google Translate. You can help to correct and verify the translation. Click here for instructions. (public функция-член std::basic_istream)
| |
| Экстракты и отбрасывает символы, пока этот символ не найден Original: extracts and discards characters until the given character is found The text has been machine-translated via Google Translate. You can help to correct and verify the translation. Click here for instructions. (public функция-член std::basic_istream)
| |
| извлекает блоки символов Original: extracts blocks of characters The text has been machine-translated via Google Translate. You can help to correct and verify the translation. Click here for instructions. (public функция-член std::basic_istream)
| |
| вставки блоков символов Original: inserts blocks of characters The text has been machine-translated via Google Translate. You can help to correct and verify the translation. Click here for instructions. (public функция-член std::basic_ostream)
| |