Domande taggate «finally»





15
getta Eccezione in finalmente blocchi
Esiste un modo elegante per gestire le eccezioni lanciate in finallyblocco? Per esempio: try { // Use the resource. } catch( Exception ex ) { // Problem with the resource. } finally { try{ resource.close(); } catch( Exception ex ) { // Could not close the resource? } } Come …


11
Perché usiamo finalmente i blocchi?
Per quanto ne so, entrambi i seguenti frammenti di codice avranno lo stesso scopo. Perché hanno i finallyblocchi? Codice A: try { /* Some code */ } catch { /* Exception handling code */ } finally { /* Cleanup code */ } Codice B: try { /* Some code */ …
91 java  .net  finally 
Utilizzando il nostro sito, riconosci di aver letto e compreso le nostre Informativa sui cookie e Informativa sulla privacy.
Licensed under cc by-sa 3.0 with attribution required.