In this code there is a try / catch block with a return inside it.
try {
alguma_coisa();
return successo;
}
catch (Exception e) {
return falha;
}
finally {
System.out.println("Eu não sei se será possível printar esta mensagem");
}
Turning this code would be simple, but the idea of the question is:
Not only on this occasion, but will the finally block always be called in Java?