std::basic_streambuf::snextc
Aus cppreference.com
< cpp | io | basic streambuf
![]() |
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. |
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.
Inhaltsverzeichnis |
[Bearbeiten] 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.
[Bearbeiten] 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.
[Bearbeiten] Beispiel
This section is incomplete Reason: no example |
[Bearbeiten] Siehe auch
liest ein Zeichen aus der Eingabesequenz ohne dabei den Sequenz 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. (öffentliche Elementfunktion) | |
liest ein Zeichen aus der Eingabesequenz und fördert die Sequenz 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. (öffentliche Elementfunktion) |