首页 > 代码库 > Java基础--try-Catch-finally
Java基础--try-Catch-finally
//摘自其他人的博客
// catch 后续处理工作
3 public static boolean catchMethod() {
4 System.out.print("call catchMethod and return --->> ");
5 return false;
6 }
7 // finally后续处理工作
8 public static void finallyMethod() {
9 System.out.println();
10 System.out.print("call finallyMethod and do something --->> ");
11 }
12
3 public static boolean catchMethod() {
4 System.out.print("call catchMethod and return --->> ");
5 return false;
6 }
7 // finally后续处理工作
8 public static void finallyMethod() {
9 System.out.println();
10 System.out.print("call finallyMethod and do something --->> ");
11 }
12
1. 抛出 Exception,没有 finally,当 catch 遇上 return
1
2public static boolean catchTest() {
3 try {
4 int i = 10 / 0; // 抛出 Exception,后续处理被拒绝
5 System.out.println("i vaule is : " + i);
6 return true; // Exception 已经抛出,没有获得被执行的机会
7 } catch (Exception e) {
8 System.out.println(" -- Exception --");
9 return catchMethod(); // Exception 抛出,获得了调用方法并返回方法值的机会
10 }
11 }
12
2public static boolean catchTest() {
3 try {
4 int i = 10 / 0; // 抛出 Exception,后续处理被拒绝
5 System.out.println("i vaule is : " + i);
6 return true; // Exception 已经抛出,没有获得被执行的机会
7 } catch (Exception e) {
8 System.out.println(" -- Exception --");
9 return catchMethod(); // Exception 抛出,获得了调用方法并返回方法值的机会
10 }
11 }
12
后台输出结果:
1
2 -- Exception --
3call catchMethod and return --->> false
4
2 -- Exception --
3call catchMethod and return --->> false
4
2. 抛出 Exception,当 catch 体里有 return,finally 体的代码块将在 catch 执行 return 之前被执行
1
2public static boolean catchFinallyTest1() {
3 try {
4 int i = 10 / 0; // 抛出 Exception,后续处理被拒绝
5 System.out.println("i vaule is : " + i);
6 return true; // Exception 已经抛出,没有获得被执行的机会
7 } catch (Exception e) {
8 System.out.println(" -- Exception --");
9 return catchMethod(); // Exception 抛出,获得了调用方法的机会,但方法值在 finally 执行完后才返回
10 }finally{
11 finallyMethod(); // Exception 抛出,finally 代码块将在 catch 执行 return 之前被执行
12 }
13 }
14
2public static boolean catchFinallyTest1() {
3 try {
4 int i = 10 / 0; // 抛出 Exception,后续处理被拒绝
5 System.out.println("i vaule is : " + i);
6 return true; // Exception 已经抛出,没有获得被执行的机会
7 } catch (Exception e) {
8 System.out.println(" -- Exception --");
9 return catchMethod(); // Exception 抛出,获得了调用方法的机会,但方法值在 finally 执行完后才返回
10 }finally{
11 finallyMethod(); // Exception 抛出,finally 代码块将在 catch 执行 return 之前被执行
12 }
13 }
14
后台输出结果:
1
2 -- Exception --
3call catchMethod and return --->>
4call finallyMethod and do something --->> false
5
2 -- Exception --
3call catchMethod and return --->>
4call finallyMethod and do something --->> false
5
3. 不抛 Exception,当 finally 代码块里面遇上 return,finally 执行完后将结束整个方法
1
2public static boolean catchFinallyTest2() {
3 try {
4 int i = 10 / 2; // 不抛出 Exception
5 System.out.println("i vaule is : " + i);
6 return true; // 获得被执行的机会,但执行需要在 finally 执行完成之后才能被执行
7 } catch (Exception e) {
8 System.out.println(" -- Exception --");
9 return catchMethod();
10 }finally{
11 finallyMethod();
12 return false; // finally 中含有 return 语句,这个 return 将结束这个方法,不会在执行完之后再跳回 try 或 catch 继续执行,方法到此结束,返回 false
13 }
14 }
15
2public static boolean catchFinallyTest2() {
3 try {
4 int i = 10 / 2; // 不抛出 Exception
5 System.out.println("i vaule is : " + i);
6 return true; // 获得被执行的机会,但执行需要在 finally 执行完成之后才能被执行
7 } catch (Exception e) {
8 System.out.println(" -- Exception --");
9 return catchMethod();
10 }finally{
11 finallyMethod();
12 return false; // finally 中含有 return 语句,这个 return 将结束这个方法,不会在执行完之后再跳回 try 或 catch 继续执行,方法到此结束,返回 false
13 }
14 }
15
后台输出结果:
1
2i vaule is : 5
3
4call finallyMethod and do something --->> false
5
2i vaule is : 5
3
4call finallyMethod and do something --->> false
5
4. 不抛 Exception,当 finally 代码块里面遇上 System.exit() 方法 将结束和终止整个程序,而不只是方法
1
2public static boolean finallyExitTest() {
3 try {
4 int i = 10 / 2; // 不抛出 Exception
5 System.out.println("i vaule is : " + i);
6 return true; // 获得被执行的机会,但由于 finally 已经终止程序,返回值没有机会被返回
7 } catch (Exception e) {
8 System.out.println(" -- Exception --");
9 return true;
10 }finally {
11 finallyMethod();
12 System.exit(0);// finally 中含有 System.exit() 语句,System.exit() 将退出整个程序,程序将被终止
13 }
14 }
15
2public static boolean finallyExitTest() {
3 try {
4 int i = 10 / 2; // 不抛出 Exception
5 System.out.println("i vaule is : " + i);
6 return true; // 获得被执行的机会,但由于 finally 已经终止程序,返回值没有机会被返回
7 } catch (Exception e) {
8 System.out.println(" -- Exception --");
9 return true;
10 }finally {
11 finallyMethod();
12 System.exit(0);// finally 中含有 System.exit() 语句,System.exit() 将退出整个程序,程序将被终止
13 }
14 }
15
后台输出结果:
1
2i vaule is : 5
3
4call finallyMethod and do something --->>
5
2i vaule is : 5
3
4call finallyMethod and do something --->>
5
5. 抛出 Exception,当 catch 和 finally 同时遇上 return,catch 的 return 返回值将不会被返回,finally 的 return 语句将结束整个方法并返回
1
2public static boolean finallyTest1() {
3 try {
4 int i = 10 / 0; // 抛出 Exception,后续处理被拒绝
5 System.out.println("i vaule is : " + i);
6 return true; // Exception 已经抛出,没有获得被执行的机会
7 } catch (Exception e) {
8 System.out.println(" -- Exception --");
9 return true; // Exception 已经抛出,获得被执行的机会,但返回操作将被 finally 截断
10 }finally {
11 finallyMethod();
12 return false; // return 将结束整个方法,返回 false
13 }
14 }
15
2public static boolean finallyTest1() {
3 try {
4 int i = 10 / 0; // 抛出 Exception,后续处理被拒绝
5 System.out.println("i vaule is : " + i);
6 return true; // Exception 已经抛出,没有获得被执行的机会
7 } catch (Exception e) {
8 System.out.println(" -- Exception --");
9 return true; // Exception 已经抛出,获得被执行的机会,但返回操作将被 finally 截断
10 }finally {
11 finallyMethod();
12 return false; // return 将结束整个方法,返回 false
13 }
14 }
15
后台输出结果:
1
2 -- Exception --
3
4call finallyMethod and do something --->> false
5
2 -- Exception --
3
4call finallyMethod and do something --->> false
5
6. 不抛出 Exception,当 finally 遇上 return,try 的 return 返回值将不会被返回,finally 的 return 语句将结束整个方法并返回
1
2public static boolean finallyTest2() {
3 try {
4 int i = 10 / 2; // 不抛出 Exception
5 System.out.println("i vaule is : " + i);
6 return true; // 获得被执行的机会,但返回将被 finally 截断
7 } catch (Exception e) {
8 System.out.println(" -- Exception --");
9 return true;
10 }finally {
11 finallyMethod();
12 return false; // return 将结束这个方法,不会在执行完之后再跳回 try 或 catch 继续执行,返回 false
13 }
14 }
15
2public static boolean finallyTest2() {
3 try {
4 int i = 10 / 2; // 不抛出 Exception
5 System.out.println("i vaule is : " + i);
6 return true; // 获得被执行的机会,但返回将被 finally 截断
7 } catch (Exception e) {
8 System.out.println(" -- Exception --");
9 return true;
10 }finally {
11 finallyMethod();
12 return false; // return 将结束这个方法,不会在执行完之后再跳回 try 或 catch 继续执行,返回 false
13 }
14 }
15
后台输出结果:
1
2i vaule is : 5
3
4call finallyMethod and do something --->> false
5
2i vaule is : 5
3
4call finallyMethod and do something --->> false
5
Java基础--try-Catch-finally
声明:以上内容来自用户投稿及互联网公开渠道收集整理发布,本网站不拥有所有权,未作人工编辑处理,也不承担相关法律责任,若内容有误或涉及侵权可进行投诉: 投诉/举报 工作人员会在5个工作日内联系你,一经查实,本站将立刻删除涉嫌侵权内容。