La clé Enfin en Java est généralement utilisée avec try. Une fois que le programme est entré dans le bloc try, que le programme soit terminé en raison d'une exception ou autre, le contenu du bloc enfin sera définitivement exécuté.
L'exemple suivant montre comment utiliser final pour intercepter les exceptions (exceptions de paramètres illégaux) via e.getMessage() :
/* author by w3cschool.cc ExceptionDemo2.java */ public class ExceptionDemo2 { public static void main(String[] argv) { new ExceptionDemo2().doTheWork(); } public void doTheWork() { Object o = null; for (int i=0; i<5; i++) { try { o = makeObj(i); } catch (IllegalArgumentException e) { System.err.println ("Error: ("+ e.getMessage()+")."); return; } finally { System.err.println("都已执行完毕"); if (o==null) System.exit(0); } System.out.println(o); } } public Object makeObj(int type) throws IllegalArgumentException { if (type == 1) throw new IllegalArgumentException ("不是指定的类型: " + type); return new Object(); } }
Le résultat de l'exécution du code ci-dessus est :
都已执行完毕 java.lang.Object@7852e922 Error: (不是指定的类型:1). 都已执行完毕
Ce qui précède est l'utilisation de Java Exemple-Enfin Pour plus de contenu connexe, veuillez faire attention au site Web PHP chinois (www.php.cn) !