std::ostreambuf_iterator::operator=
Da cppreference.com.
< cpp | iterator | ostreambuf iterator
![]() |
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. |
ostreambuf_iterator& operator=( CharT c ) |
||
Se
failed()
restituisce true, inserisce il c
carattere nel buffer del flusso associato chiamando pbuf->sputc(c), dove pbuf
è il membro privato di streambuf_type*
tipo. In caso contrario, non fa nulla.Original:
If
failed()
returns true, inserts the character c
into the associated stream buffer by calling pbuf->sputc(c), where pbuf
is the private member of type streambuf_type*
. Otherwise, does nothing.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 chiamata a pbuf->sputc(c) rendimenti Traits::eof, imposta il flag fallito () per vero.
Original:
If the call to pbuf->sputc(c) returns Traits::eof, sets the failed() flag to true.
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
c | - | il carattere da inserire
Original: the character to insert The text has been machine-translated via Google Translate. You can help to correct and verify the translation. Click here for instructions. |
[modifica] Valore di ritorno
*this
[modifica] Esempio
This section is incomplete |
[modifica] Vedi anche
scrive un carattere alla zona mettere e fa avanzare il puntatore successivo Original: writes one character to the put area and advances the next pointer The text has been machine-translated via Google Translate. You can help to correct and verify the translation. Click here for instructions. (metodo pubblico) |