std::exception::exception
Da cppreference.com.
![]() |
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. |
exception(); |
(1) | |
exception( const exception& other ); |
(2) | |
Costruisce nuovo oggetto eccezione.
1) Original:
Constructs new exception object.
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.
Costruttore di default. what() restituisce stringa vuota.
2) Original:
Default constructor. what() returns empty string.
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.
Copia costruttore. Inizializza i contenuti con quelli di
other
Original:
Copy constructor. Initializes the contents with those of
other
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
other | - | un'altra eccezione per assegnare il contenuto di
Original: another exception to assign the contents of The text has been machine-translated via Google Translate. You can help to correct and verify the translation. Click here for instructions. |