“Blockiert schließlich nach dem Absturz” Code-Antworten

Blockiert schließlich nach dem Absturz

///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

wo schließlich Block nicht ausgeführt wird

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

Ähnliche Antworten wie “Blockiert schließlich nach dem Absturz”

Fragen ähnlich wie “Blockiert schließlich nach dem Absturz”

Weitere verwandte Antworten zu “Blockiert schließlich nach dem Absturz” auf Java

Durchsuchen Sie beliebte Code-Antworten nach Sprache

Durchsuchen Sie andere Codesprachen