std::basic_streambuf::uflow
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 uflow(); |
||
Stellt sicher, dass mindestens ein Zeichen verfügbar ist im Eingangsbereich durch die Aktualisierung der Zeiger auf den Eingangsbereich (falls erforderlich). Bei Erfolg gibt den Wert des Zeichens und setzt den Wert der get-Zeiger von einem Zeichen. Bei Ausfall kehrt traits::eof() .
Original:
Ensures that at least one character is available in the input area by updating the pointers to the input area (if needed). On success returns the value of that character and advances the value of the get pointer by one character. On failure returns traits::eof().
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 kann zu aktualisieren
gptr
, egptr
und eback
Zeigern auf den Standort der neu geladenen Daten (sofern vorhanden) zu definieren. Bei Ausfall sorgt die Funktion, dass entweder gptr() == nullptr oder gptr() == egptr .Original:
The function may update
gptr
, egptr
and eback
pointers to define the location of newly loaded data (if any). On failure, the function ensures that either gptr() == nullptr or gptr() == egptr.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 Basisklasse Version der Funktion nennt
underflow
. Die abgeleiteten Klassen können diese Funktion überschreiben, um Aktualisierungen der get-Bereich im Falle der Erschöpfung ermöglichen .Original:
The base class version of the function calls
underflow
. The derived classes may override this function to allow updates to the get area in the case of exhaustion.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 Charakters, die von der get-Zeiger wurde darauf, bevor es durch ein vorverlegt wurde oder traits::eof() sonst .
Original:
The value of the character that was pointed to by the get pointer before it was advanced by one, or traits::eof() otherwise.
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 Basisklasse Version der Funktion gibt den Wert von
underflow
zurückgegeben .Original:
The base class version of the function returns the value returned by
underflow
.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] Hinweis
Die öffentlichen Funktionen std::streambuf rufen Sie diese Funktion nur, wenn gptr() == nullptr oder gptr() >= egptr() .
Original:
The public functions of std::streambuf call this function only if gptr() == nullptr or gptr() >= egptr().
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
[virtuell] |
liest Zeichen aus dem dazugehörigen Eingang Sequenz an die get-Bereich Original: reads characters from the associated input sequence to 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. (virtuellen geschützten Member-Funktion) |
[virtuell] |
schreibt Zeichen auf die zugehörige Ausgangsscheibe Sequenz aus dem Bereich gebracht Original: writes characters to the associated output sequence from the put area The text has been machine-translated via Google Translate. You can help to correct and verify the translation. Click here for instructions. (virtuellen geschützten Member-Funktion) |