“Finalmente bloqueia executado após o colapso” Respostas de código

Finalmente bloqueia executado após o colapso

///Finally block will be executed even if the catch failes to "catch" the exception.
    public static void main(String[] args) {
        try{
            throw new ArrayIndexOutOfBoundsException();
        }catch(NullPointerException e){
            System.out.println("CATCH BLOCK");
        }finally{
            System.out.println("FINALLY");
        }
    }
    
//output: FINALLY
//Exception in thread "main" java.lang.ArrayIndexOutOfBoundsException
       // at test.main(test.java:4)
Fine Fowl

onde finalmente o bloco não será executado

Finally block will not be executed whenever jvm shutdowns. 
If we use system.exit(0) in try statement finally block if present 
will not be executed.
Thankful Tuatara

Respostas semelhantes a “Finalmente bloqueia executado após o colapso”

Perguntas semelhantes a “Finalmente bloqueia executado após o colapso”

Mais respostas relacionadas para “Finalmente bloqueia executado após o colapso” em Java

Procure respostas de código populares por idioma

Procurar outros idiomas de código