std::basic_streambuf::showmanyc
Aus cppreference.com
<metanoindex/>
<tbody> </tbody> 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.
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
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.
Beispiel
| This section is incomplete Reason: no example |
