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






11
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 lógica …
Ao utilizar nosso site, você reconhece que leu e compreendeu nossa Política de Cookies e nossa Política de Privacidade.
Licensed under cc by-sa 3.0 with attribution required.