cpp/io/basic streambuf/sputc: differenze tra le versioni
Da cppreference.com.
< cpp | io | basic streambuf
P12 (Discussione | contributi) m (una revisione importata: Translate from the English version) |
m (r2.7.3) (Bot: Aggiungo de, en, es, fr, ja, pt, ru, zh) |
||
Riga 28: | Riga 28: | ||
{{dcl list template | cpp/io/basic_streambuf/dcl list sputn}} | {{dcl list template | cpp/io/basic_streambuf/dcl list sputn}} | ||
{{dcl list end}} | {{dcl list end}} | ||
+ | |||
+ | |||
+ | |||
+ | |||
+ | |||
+ | |||
+ | |||
+ | |||
+ |
Versione delle 19:56, 2 nov 2012
![]() |
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 sputc( char_type ch ); |
||
Scrive un carattere alla sequenza di uscita.
Original:
Writes one character to the output sequence.
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 sequenza di scrittura posizione di uscita non è disponibile, restituisce overflow(ch). In caso contrario, restituisce traits::to_int_type(ch).
Original:
If the output sequence write position is not available, returns overflow(ch). Otherwise returns traits::to_int_type(ch).
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 |
Parametri
ch | - | carattere da scrivere
Original: character to write The text has been machine-translated via Google Translate. You can help to correct and verify the translation. Click here for instructions. |
Valore di ritorno
Il carattere scritto in caso di successo o traits::eof() in caso di fallimento.
Original:
The written character on success or traits::eof() on failure.
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.
Esempio
This section is incomplete Reason: no example |