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. |
Defined in header <ios>
|
||
typedef /*unspecified*/ streamsize; |
||
タイプ
std::streamsize
は、I / O操作またはI / Oバッファのサイズで転送された文字の数を表すために使用される符号付き整数型です。これは、POSIXタイプstd::size_tに似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. (パブリックメンバ関数of 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. (パブリックメンバ関数of 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. (パブリックメンバ関数of 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. (パブリックメンバ関数of std::basic_ostream )
|