std::basic_streambuf::snextc
提供: cppreference.com
< cpp | io | basic streambuf
![]() | このページは、Google 翻訳を使って英語版から機械翻訳されました。 翻訳には誤りや奇妙な言い回しがあるかもしれません。文章の上にポインタをおくと、元の文章が見れます。誤りを修正して翻訳を改善する手助けをしてください。翻訳についての説明は、ここをクリックしてください。 |
int_type snextc(); | ||
1文字ずつ進歩入力シーケンスと1文字を読み取り.
Original:
Advances the input sequence by one character and reads one character.
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.
この関数は、入力シーケンスを進めるため
sbumpc()
呼び出します。その関数は、入力シーケンスが不足してきたとtraits::eof()がより多くのデータを取得できなかったことを意味しuflow()
返した場合、traits::eof()が返されます。さもなければsgetc()
は文字を読むために呼ばれ.Original:
The function calls
sbumpc()
to advance the input sequence. If that function returns traits::eof() meaning that input sequence has been exhausted and uflow()
could not retrieve more data, traits::eof() is returned. Otherwise sgetc()
is called in order to read the character.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.
目次 |
[編集]パラメータ
(なし)
[編集]値を返します
次の文字の値。入力シーケンスを使い切った場合は、traits::eof()が返されます.
Original:
The value of the next character. If the input sequence has been exhausted, traits::eof() is returned.
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 |
[編集]参照
シーケンスを進めずに、入力シーケンスの1文字を読み取ります Original: reads one character from the input sequence without advancing the sequence The text has been machine-translated via Google Translate. You can help to correct and verify the translation. Click here for instructions. (パブリックメンバ関数) | |
入力シーケンスと進歩系列から1文字を読み取ります Original: reads one character from the input sequence and advances the sequence The text has been machine-translated via Google Translate. You can help to correct and verify the translation. Click here for instructions. (パブリックメンバ関数) |