Java | Manejo de excepciones | Pregunta 8
Prediga la salida del siguiente programa. class Test { int count = 0; void A() throws Exception { try { count++; try { count++; try { count++; throw new Exception(); } catch(Exception ex) { count++; throw new Exception(); } } catch(Exception ex) { count++; } } catch(Exception ex) … Continue reading «Java | Manejo de excepciones | Pregunta 8»