第一:return语句并不是函数的最终出口,如果有finally语句,这在return之后还会执行finally(return的值会暂存在栈里面,等待finally执行后再返回)
第二:finally里面不建议放return语句,根据需要,return语句可以放在try和catch里面和函数的最后。可行的做法有四:
1、return语句只在函数最后出现一次。
2、return语句仅在try和catch里面都出现。
3、return语句仅在try和函数的最后都出现。
4、return语句仅在catch和函数的最后都出现。
注意,除此之外的其他做法都是不可行的,编译器会报错。
(1)如果程序运行到try成功时可以返回结果,则采用方法2。(见下面的例子test0_1,在那个例子中,方法2和4都是可行的,但是推荐方法2?)
(2)如果程序运行到catch时(即中途出错时)无需再继续执行后面的代码了,则采取方法4;(见下面例子中的test0,在那个特殊的例子中,只能采取方法4)
(3)如果程序运行到try或catch时还需要继续执行后面的代码,则采取方法1(见下面的例子test0_2,该例子只能采用方法1)。
下面是测试代码:
public class Test { public static void main(String[] args) { System.out.println("=============test1_1=================="); System.out.println("\n============test2==================="); System.out.println("\n============test2_1==================="); System.out.println("\n============test3==================="); System.out.println("\n============test3_1==================="); public static String test0() { } finally { public static String test1_1() { try{ } finally { //从eclpise报警告可看出,finally里面不建议有return语句 public static int test2() { try{ } finally { return a; public static int test2_1() { try{ } finally { //Helper类,将整数转换成字符串 public String toString() { try{ } finally { public static Helper test3_1() { try{ } finally { /** |
====================================分割线================================
最新内容请见作者的GitHub页:http://qaseven.github.io/