java try 返回值_java基础之try catch finally

莫得感情的更新机器又出现了,中午抽空来一发,总结一下,记录一下,分享一下。

try catch finally那些事,从一道广为流传的面试题说起:

public class TryCatchFinally {

public static void main(String [] args){

int i=0;

i=getint(i);

System.out.println(i);

}

public static int getint(int i){

//Socket soct=new Socket();

try {

//soct.connect(null);

i++;

return i;

} catch (Exception e) {

// TODO Auto-generated catch block

e.printStackTrace();

}finally{

i++;

System.out.println("do finally!");

}

return i;

}

}

执行结果:

do finally!

1

多少人因为回答了2,然后被面试官说二。

为何会是1呢?

那是因为在执行 finally 语句块之前,try 或者 catch 语句块会保留其返回值到本地变量表(Local Variable Table)中。待finally 语句块 执行完毕之后,再恢复保留的返回值到操作数栈中,然后通过 return 或者 throw 语句将其返回给该方法的调用者。

请注意,对于这条规则(保留返回值),只适用于 return 和 throw 语句,不适用于 break 和 continue 语句,因为它们根本就没有返回值。

另外需要注意的是,因为对try catch语句虚拟机做了跳转的处理,所以别使用太多,或在循环中使用,以免影响效率。

还有一点就是,finally使用主要用于关闭一些资源,像数据库连接,文件句柄等,不能什么都往里面放。

最后一点,别在catch子句中把Exception直接吞了,你可以选择throw到外层处理,或者打印日志,或者走错误分支,但是别把Exception直接抹掉当没事发生,不然会坑到很多人

你可能感兴趣的:(java,try,返回值)