Luego de consultar expertos en la materia, programadores de diversas áreas y maestros dimos con la respuesta al dilema y la plasmamos en esta publicación.
Ejemplo: ventajas del manejo de excepciones en Java
1)Separating normal code from exception handling code toavoid abnormal
termination of program.2)Categorizing in todifferent types of Exceptions so that rather than
handling all exceptions withException root class we can handle withspecificexceptions. It is recommended tohandle exceptions withspecificException
instead of handling withException root class.3)Call stack mechanism :If a method throws an exception and it is not handled
immediately, then that exception is propagated or thrown tothe caller of that
method. This propogation continues till it finds an appropriate exception
handler,if it finds handler it would be handled otherwise program terminates
abruptly.
Aquí tienes las reseñas y puntuaciones
¡Haz clic para puntuar esta entrada!
(Votos: 0 Promedio: 0)