Java 实例 - Finally的用法

Java 中的 Finally 关键一般与try一起使用,在程序进入try块之后,无论程序是因为异常而中止或其它方式返回终止的,finally块的内容一定会被执行。

以下实例演示了如何使用 finally 通过 e.getMessage() 来捕获异常(非法参数异常):

ExceptionDemo2.java 文件

  1. public class ExceptionDemo2 {
  2. public static void main(String[] argv) {
  3. new ExceptionDemo2().doTheWork();
  4. }
  5. public void doTheWork() {
  6. Object o = null;
  7. for (int i=0; i<5; i++) {
  8. try {
  9. o = makeObj(i);
  10. }
  11. catch (IllegalArgumentException e) {
  12. System.err.println
  13. ("Error: ("+ e.getMessage()+").");
  14. return;
  15. }
  16. finally {
  17. System.err.println("都已执行完毕");
  18. if (o==null)
  19. System.exit(0);
  20. }
  21. System.out.println(o);
  22. }
  23. }
  24. public Object makeObj(int type)
  25. throws IllegalArgumentException {
  26. if (type == 1)
  27. throw new IllegalArgumentException
  28. ("不是指定的类型: " + type);
  29. return new Object();
  30. }
  31. }

以上代码运行输出结果为:

  1. 都已执行完毕
  2. java.lang.Object@7852e922
  3. Error: (不是指定的类型:1).
  4. 都已执行完毕