Preguntas etiquetadas con try-finally






11
Diferencia entre intentar-finalmente y tratar-atrapar
Cuál es la diferencia entre try { fooBar(); } finally { barFoo(); } y try { fooBar(); } catch(Throwable throwable) { barFoo(throwable); // Does something with throwable, logs it, or handles it. } Me gusta más la segunda versión porque me da acceso al Throwable. ¿Existe alguna diferencia lógica o …
Al usar nuestro sitio, usted reconoce que ha leído y comprende nuestra Política de Cookies y Política de Privacidad.
Licensed under cc by-sa 3.0 with attribution required.