std::error_code::operator bool
Da cppreference.com.
< cpp | error | error code
Versione del 26 ott 2012 alle 07:00 di TranslationBot (Discussione | contributi)
![]() |
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. |
explicit operator bool() const; |
(dal C++11) | |
Controlla se il valore di errore è valido, cioè non da zero.
Original:
Checks if the error value is valid, i.e. non-zero.
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.
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.
Valore di ritorno
false se value() == 0, true altrimenti.
Original:
false if value() == 0, true 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.