std::basic_streambuf::showmanyc
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. |
protected: std::streamsize showmanyc(); | ||
Schätzt die Zahl der verfügbaren Zeichen für die Eingabe in der zugehörigen Zeichenfolge.
underflow()
garantiert nicht traits::eof() zurück bis mindestens so viele Zeichen extrahiert werden .Original:
Estimates the number of characters available for input in the associated character sequence.
underflow()
is guaranteed not to return traits::eof() until at least that many characters are extracted.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
Die Anzahl der Zeichen in der Sequenz oder -1 wenn keine Zeichen verfügbar sind. In diesem Fall wird
underflow()
und uflow()
scheitern .Original:
The number of characters available in the sequence, or -1 if no characters are available. In that case,
underflow()
and uflow()
will fail.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 gibt 0 .
Original:
The base class version returns 0.
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
erhält die Anzahl der Zeichen sofort in der get-Bereich Original: obtains the number of characters immediately available in 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. (öffentliche Elementfunktion) | |
[virtuell] | Optional bietet die Anzahl der noch verfügbaren Zeichen für die Eingabe aus der Datei Original: optionally provides the number of characters available for input from the file 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 of std::basic_filebuf ) |