std::basic_streambuf::sbumpc
Da cppreference.com.
< cpp | io | basic streambuf
![]() | Questa pagina è stata tradotta in modo automatico dalla versione in ineglese della wiki usando Google Translate. La traduzione potrebbe contenere errori e termini strani. Muovi il puntatore sopra al testo per vedere la versione originale. Puoi aiutarci a correggere gli gli errori. Per ulteriori istruzioni clicca qui. |
int_type sbumpc(); | ||
Legge un carattere e di passare alla sequenza di input di un carattere.
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.
Se la posizione della sequenza di input lettura non è disponibile, restituisce
uflow()
. In caso contrario, restituisce 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.
Indice |
[modifica]Parametri
(Nessuno)
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.
[modifica]Valore di ritorno
Il valore del carattere puntato dal puntatore' ottenere, o se la posizione traits::eof() lettura non è disponibile.
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.
[modifica]Esempio
This section is incomplete Reason: no example |
[modifica]Vedi anche
legge un carattere dalla sequenza di input senza avanzare la sequenza 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. (metodo pubblico) | |
avanza la sequenza di input, quindi legge un carattere senza avanzare di nuovo 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. (metodo pubblico) |