“est enfin un bloc exécuté après le crash” Réponses codées

est enfin un bloc exécuté après le crash

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

où enfin le bloc ne sera pas exécuté

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

Réponses similaires à “est enfin un bloc exécuté après le crash”

Questions similaires à “est enfin un bloc exécuté après le crash”

Plus de réponses similaires à “est enfin un bloc exécuté après le crash” dans Java

Parcourir les réponses de code populaires par langue

Parcourir d'autres langages de code