黑马程序员技术交流社区

标题: 基础提问 [打印本页]

作者: 竹林雅轩    时间: 2015-10-28 00:03
标题: 基础提问
假如在catch里面有return语句,请问final里面的语句还执行吗
作者: 耀阳圣尊    时间: 2015-10-28 11:02
  1.         public static void main(String[] args) {
  2.                
  3.                 ss();
  4.         }
  5.        
  6.         public static int ss(){
  7.                 int result = 0;
  8.                 try {
  9.                         System.out.println("try中");
  10.                         result++;
  11.                 } catch (Exception e) {
  12.                         // TODO Auto-generated catch block
  13.                         e.printStackTrace();
  14.                         System.out.println("catch中");
  15.                         return result;
  16.                 }
  17.                 finally{
  18.                         System.out.println("finally中");
  19.                         System.out.println(result);
  20.                 }
  21.                 return result;
  22.         }
复制代码

会被执行到,详细看代码
作者: maxwell247    时间: 2015-10-28 19:02
会被执行,但是不会改变return的值. 除非在finally中也有return语句.




欢迎光临 黑马程序员技术交流社区 (http://bbs.itheima.com/) 黑马程序员IT技术论坛 X3.2