quando un programmatore utilizzare un blocco try, senza catturacosa succede alle eccezioni quando provate ad usare il solo fine invece di prendere e come si gestisce?
come questo
PersistenceManager pm = PMF.get().getPersistenceManager();
try {
pm.makePersistent(c);
} finally {
pm.close();
}
cosa succede ad eccezione e come, eventualmente, gestire più tardi?
cerco imparare da internet, ma senza risultato chiaro per essa ...
per eccezioni non rilevate: http://www.javamex.com/tutorials/exceptions/exceptions_uncaught_handler.shtml – 9dan
Tutorial, chiunque? (In ogni caso, cerca anche "try-with-resources".) – user2864740