cpp/error/error code/operator bool: differenze tra le versioni
Da cppreference.com.
< cpp | error | error code
(Translated from the English version using Google Translate) |
m (r2.7.3) (Bot: Aggiungo de, en, es, fr, ja, pt, ru, zh) |
||
(Una revisione intermedia di un utente non mostrata) | |||
Riga 16: | Riga 16: | ||
===Eccezioni=== | ===Eccezioni=== | ||
{{noexcept}} | {{noexcept}} | ||
+ | |||
+ | |||
+ | |||
+ | |||
+ | |||
+ | |||
+ | |||
+ | |||
+ |
Versione attuale delle 16:10, 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. |
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.
[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
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.