Perguntas com a marcação «try-finally»

90
Diferença entre try-finally e try-catch

Qual é a diferença entre try { fooBar(); } finally { barFoo(); } e try { fooBar(); } catch(Throwable throwable) { barFoo(throwable); // Does something with throwable, logs it, or handles it. } Eu gosto mais da segunda versão porque ela me dá acesso ao Throwable. Existe alguma diferença...