std::basic_streambuf::sbumpc
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 sbumpc(); |
||
Liest ein Zeichen und fördert die Eingabesequenz um ein Zeichen .
Original:
Reads one character and advances the input sequence by 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.
Wenn der Eingabesequenz Leseposition nicht verfügbar ist, kehrt
uflow()
. Ansonsten kehrt traits::to_int_type(*gptr()) .Original:
If the input sequence read position is not available, returns
uflow()
. Otherwise returns traits::to_int_type(*gptr()).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 Zeichens, auf das die Get pointer oder traits::eof(), wenn die Lese-Position nicht verfügbar ist .
Original:
The value of the character pointed to by the get pointer, or traits::eof() if the read position is not available.
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) | |
Fortschritte die Eingabesequenz, dann liest ein Charakter ohne Förderung wieder Original: advances the input sequence, then reads one character without advancing again The text has been machine-translated via Google Translate. You can help to correct and verify the translation. Click here for instructions. (öffentliche Elementfunktion) |