std::basic_streambuf::showmanyc
提供: cppreference.com
< cpp | io | basic streambuf
![]() |
このページは、Google 翻訳を使って英語版から機械翻訳されました。
翻訳には誤りや奇妙な言い回しがあるかもしれません。文章の上にポインタをおくと、元の文章が見れます。誤りを修正して翻訳を改善する手助けをしてください。翻訳についての説明は、ここをクリックしてください。 |
protected: std::streamsize showmanyc(); |
||
関連文字シーケンスの入力に使用できる文字の数が推定している。
underflow()
は、少なくとも多くの文字が抽出されるまでtraits::eof()を返さないことが保証されて.Original:
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.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:
(none)
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.
[編集] 値を返します
シーケンスで使用可能な文字の数、または何も文字が使用できない場合-1。その場合、
underflow()
とuflow()
は失敗するでしょう.Original:
The number of characters available in the sequence, or -1 if no characters are available. In that case,
underflow()
and uflow()
will fail.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.
基本クラスのバージョンを返し0.
Original:
The base class version returns 0.
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.
[編集] 例
This section is incomplete Reason: no example |
[編集] も参照してください
get領域で直ちに利用可能な文字数を取得します Original: obtains the number of characters immediately available in the get area The text has been machine-translated via Google Translate. You can help to correct and verify the translation. Click here for instructions. (パブリックメンバ関数) | |
[仮想] |
オプションで、ファイルからの入力に使用できる文字の数を提供します Original: optionally provides the number of characters available for input from the file The text has been machine-translated via Google Translate. You can help to correct and verify the translation. Click here for instructions. (仮想protectedメンバ関数of std::basic_filebuf )
|