std::basic_streambuf::snextc
Aus cppreference.com
<metanoindex/>
<tbody> </tbody> int_type snextc(); |
||
Advances die Eingabesequenz um ein Zeichen und liest ein Zeichen .
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.
Die Funktion ruft
sbumpc() die Eingabesequenz voranzutreiben. Wenn diese Funktion gibt traits::eof() bedeutet, dass Input-Sequenz wurde erschöpft und uflow() konnte nicht abgerufen werden mehr Daten, wird traits::eof() zurückgegeben. Ansonsten sgetc() wird aufgerufen, um den Charakter zu lesen .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.
Parameter
(None)
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.
Rückgabewert
Der Wert des nächsten Zeichens. Wenn der Eingabesequenz erschöpft ist, wird zurückgegeben
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.
Beispiel
| This section is incomplete Reason: no example |
