std::ostreambuf_iterator::failed
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. |
bool failed()const | ||
Restituisce true se l'iteratore incontrato l'end-of-file di condizione, cioè, se una precedente chiamata a std::basic_streambuf::sputc (made by operatore =) ha restituito Traits::eof.
Original:
Returns true if the iterator encountered the end-of-file condition, that is, if an earlier call to std::basic_streambuf::sputc (made by operatore =) returned Traits::eof .
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
true se questo iteratore ha incontrato l'end-of-file condizione putput, false altrimenti.
Original:
true if this iterator has encountered the end-of-file condition on putput, false otherwise.
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]Eccezioni
[modifica]Esempio
This section is incomplete |