1、try块中没有抛出异常,try、catch和finally块中都有return语句

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
public static int NoException(){
         int i=10;
         try{
           System.out.println("i in try block is:"+i);
           return --i;
         }
         catch(Exception e){
           --i;
           System.out.println("i in catch - form try block is:"+i);
           return --i;
         }
         finally{     
           System.out.println("i in finally - from try or catch block is:"+i);
           return --i;
         }  
}

运行代码:

1
2
3
4
5
public static void main(String[] args) {
        System.out.println("=============NoException==================");
        System.out.println(NoException());
        System.out.println("===============================");   
}

运行结果:

1
2
3
4
5
=============NoException==================
in try block is10
in finally - from try or catch block is9
8
===============================

执行顺序:

执行try块,执行到return语句时,先执行return的语句,--i,但是不返回到main方法,执行finally块,遇到finally块中的return语句,执行--i,并将值返回到main方法,这里就不会再回去返回try块中计算得到的值。

结论:try-catch-finally都有return语句时,没有异常时,返回值是finally中的return返回的。

2.try块中没有抛出异常,仅try和catch中有return语句

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
public static int NoException1(){
            int i=10;
            try{
                System.out.println("i in try block is:"+i);
                return --i;
            }
            catch(Exception e){
                --i;
                System.out.println("i in catch - form try block is:"+i);
                return --i;
            }
            finally{           
                System.out.println("i in finally - from try or catch block is:"+i);
                --i;
                System.out.println("i in finally block is:"+i);
                //return --i;
            }
}

运行结果:

1
2
3
4
5
6
=============NoException1==================
in try block is10
in finally - from try or catch block is9
in finally block is8
9
===============================

执行顺序:

try中执行完return的语句后,不返回,执行finally块,finally块执行结束后,返回到try块中,返回i在try块中最后的值。

结论:try-catch都有return语句时,没有异常时,返回值是try中的return返回的。

3.try块中抛出异常,try、catch和finally中都有return语句

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
public static int WithException(){
            int i=10;
            try{
                System.out.println("i in try block is:"+i);
                i = i/0;
                return --i;
            }
            catch(Exception e){
                System.out.println("i in catch - form try block is:"+i);
                --i;
                System.out.println("i in catch block is:"+i);
                return --i;
            }
            finally{           
                System.out.println("i in finally - from try or catch block is--"+i);
                --i;
                System.out.println("i in finally block is--"+i);
                return --i;
            }
}

执行结果:

1
2
3
4
5
6
7
8
=============WithException==================
in try block is10
in catch - form try block is10
in catch block is9
in finally - from try or catch block is--8
in finally block is--7
6
===============================

执行顺序:

抛出异常后,执行catch块,在catch块的return的--i执行完后,并不直接返回而是执行finally,因finally中有return语句,所以,执行,返回结果6。

结论:

try块中抛出异常,try、catch和finally中都有return语句,返回值是finally中的return。

4.try块中抛出异常,try和catch中都有return语句

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
public static int WithException1(){
            int i=10;
            try{
                System.out.println("i in try block is:"+i);
                i=i/0;
                return --i;
            }catch(Exception e){
                System.out.println("i in catch - form try block is:"+i);           
                return --i;
            }finally{
                                                                                                                                                                      
                System.out.println("i in finally - from try or catch block is:"+i);
                --i;
                System.out.println("i in finally block is:"+i);
                //return i;
            }
}

执行结果:

1
2
3
4
5
6
7
=============WithException1==================
in try block is10
in catch - form try block is10
in finally - from try or catch block is9
in finally block is8
9
===============================

执行顺序:

抛出异常后,执行catch块,执行完finally语句后,依旧返回catch中的执行return语句后的值,而不是finally中修改的值。

结论:

返回的catch中return值。

5.try、catch中都出现异常,在finally中有返回

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
public static int WithException2(){
            int i=10;
            try{
                System.out.println("i in try block is:"+i);
                i=i/0;
                return --i;
            }
            catch(Exception e){
                System.out.println("i in catch - form try block is:"+i);
                int j = i/0;
                return --i;
            }
            finally{
                                                                                       
                System.out.println("i in finally - from try or catch block is:"+i);
                --i;
                --i;
                System.out.println("i in finally block is:"+i);
                return --i;
}

执行结果:

1
2
3
4
5
6
7
=============WithException2==================
in try block is:10
in catch - form try block is:10
in finally - from try or catch block is:10
in finally block is:8
7
===============================

执行顺序:

try块中出现异常到catch,catch中出现异常到finally,finally中执行到return语句返回,不检查异常。

结论:

返回finally中return值。

6、只在函数最后出现return语句

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
public static int WithException3(){
            int i=10;
            try{
                System.out.println("i in try block is:"+i);
                i=i/0;
                //return --i;
            }
            catch(Exception e){
                System.out.println("i in catch - form try block is:"+i);
                //int j = i/0;
                //return --i;
            }
            finally{
                                                                          
                System.out.println("i in finally - from try or catch block is:"+i);
                --i;
                --i;
                System.out.println("i in finally block is:"+i);
                //return --i;
            }
            return --i;
}

执行结果:

1
2
3
4
5
6
7
=============WithException3==================
in try block is10
in catch - form try block is10
in finally - from try or catch block is10
in finally block is8
7
===============================

总体结论:

结论一:

return语句并不是函数的最终出口,如果有finally语句,这在return之后还会执行finally(return的值会暂存在栈里面,等待finally执行后再返回)
结论二:

finally里面不建议放return语句,根据需要,return语句可以放在try和catch里面和函数的最后。可行的做法有四:
   (1)return语句只在函数最后出现一次。
   (2)return语句仅在try和catch里面都出现。
   (3)return语句仅在try和函数的最后都出现。
   (4)return语句仅在catch和函数的最后都出现。
   注意,除此之外的其他做法都是不可行的,编译器会报错。

转载自:http://qing0991.blog.51cto.com/1640542/1387200

try--catch--finally中return返回值执行的顺序(区别)的更多相关文章

  1. try--catch--finally中return返回值执行的顺序

    1.try块中没有抛出异常,try.catch和finally块中都有return语句 public static int NoException(){ int i=10; try{ System.o ...

  2. 用jquery的ajax方法获取return返回值的正确姿势

    如果jquery中,想要获取ajax的return返回值,必须注意两方面,ajax的同步异步问题,在ajax方法里面还是外面进行return返回值. 下面列举了三种写法,如果想成功获取到返回值,参考第 ...

  3. 用jquery的ajax方法获取不到return返回值

    如果jquery中,获取不到ajax返回值. 两个错误写法会导致这种情况:1.ajax未用同步 2.在ajax方法中直接return返回值. 下面列举了三种写法,如果想成功获取到返回值,参考第三种写法 ...

  4. 关于ExecuteNonQuery执行存储过程的返回值 、、实例讲解存储过程的返回值与传出参数、、、C#获取存储过程的 Return返回值和Output输出参数值

    关于ExecuteNonQuery执行存储过程的返回值 用到过ExecuteNonQuery()函数的朋友们在开发的时候肯定这么用过. if(cmd.ExecuteNonQuery("xxx ...

  5. c++中带返回值函数没写return能通过编译但运行时会出现奇怪问题

    c++中带返回值函数没写return能通过编译但运行时会出现奇怪问题 例如: string myFunc(){ theLogics(); } 发现调用: myFunc(); 崩溃. 但调用: cout ...

  6. C# 调用存储过程操作 OUTPUT参数和Return返回值

    本文转载:http://www.cnblogs.com/libingql/archive/2010/05/02/1726104.html 存储过程是存放在数据库服务器上的预先编译好的sql语句.使用存 ...

  7. [改善Java代码]不要在finally块中处理返回值

    在finally代码块中处理返回值,这是在面试题中经常出现的题目.但是在项目中绝对不能再finally代码块中出现return语句,这是因为这种处理方式非常容易产生"误解",会严重 ...

  8. 字节码分析finally块对return返回值的影响

    直接进入主题.看如下代码: public int test(){ int i=0; try { i=1; return i; } catch (Exception e) { i=2; return i ...

  9. Asp.net MVC 中Controller返回值类型ActionResult

    [Asp.net MVC中Controller返回值类型] 在mvc中所有的controller类都必须使用"Controller"后缀来命名并且对Action也有一定的要求: 必 ...

随机推荐

  1. 用读写锁三句代码解决多线程并发写入文件 z

    C#使用读写锁三句代码简单解决多线程并发写入文件时提示“文件正在由另一进程使用,因此该进程无法访问此文件”的问题 在开发程序的过程中,难免少不了写入错误日志这个关键功能.实现这个功能,可以选择使用第三 ...

  2. 安装完CentOS 7 后必做的七件事

    CentOS是最多人用来运行服务器的 Linux 版本,最新版本是 CentOS 7.当你兴趣勃勃地在一台主机或 VPS 上安装 CentOS 7 后,首要的工作肯定是加强它的安全性,以下列出的七件事 ...

  3. Linux中执行shell脚本的4种方法总结

    bash shell 脚本的方法有多种,现在作个小结.假设我们编写好的shell脚本的文件名为hello.sh,文件位置在/data/shell目录中并已有执行权限. 方法一:切换到shell脚本所在 ...

  4. 利用swap技巧去除容器多余的容量

    假设我们预先为容器添加了一部分元素,接着用clear将它们删除,容器内部分配的存储空间实际上不会减小,改变的只是能够访问的元素个数.如下所示: std::vector<int> vec; ...

  5. (Array)121. Best Time to Buy and Sell Stock

    Say you have an array for which the ith element is the price of a given stock on day i. If you were ...

  6. C++ 队列的实现

    /************************************************************************/ /* 实现一个通用同步队列 使用链表实现队列 (先 ...

  7. 【解决】SharePoint 2013 当鼠标悬停在用户名称上时页面会崩溃

    参考下面文章,此问题是由于IE中的Office插件版本不正确所致,只需在 控制面板 > 程序和功能 中修复 Office 的安装即可. http://sympmarc.com/2013/11/2 ...

  8. 高斯模糊算法的 C++ 实现

    2008 年在一个 PS 讨论群里,有网友不解 Photoshop 的高斯模糊中的半径是什么含义,因此当时我写了这篇文章: 对Photoshop高斯模糊滤镜的算法总结: 在那篇文章中,主要讲解了高斯模 ...

  9. c# 文件及目录操作类

    18位长度的计时周期数: DateTime.Now.Ticks.ToString() 多数是收集而来,加上测试感觉很不错,分享一下或许有些帮助吧: 引用: using System; using Sy ...

  10. html, xhtml和xml

    html, xhtml和xml 1.定义及特点: 1) html:Hyper Text Markup Language 超文本标记语言 是最早写网页的语言,但编码不规范,主要用于控制数据的显示和外观. ...