java try {}里有一个return语句,那么紧跟在这个try后的finally {}里的code会不会被执行,什么时候被执行 try {}里有一个return语句,那么紧跟在这个try后的finally {}里的code会不会被执行,什么时候被执行,在return前还是后? 也许你的答案是在return之前,但往更细地说,我的答案是在return中间执行,请看下面程序代码的运行结果:
[java] view plaincopyprint? 01.public class Test { 02. /** 03. * @param args add by zxx ,Dec 9, 2008 04. */ 05. public static void main(String[] args) { 06. // TODO Auto-generated method stub 07. System.out.println(new Test().test());; 08. } 09. static int test() 10. { 11. int x = 1; 12. try 13. { 14. return x; 15. } 16. finally 17. { 18. ++x; 19. } 20. } 21.} public class Test { /** * @param args add by zxx ,Dec 9, 2008 */ public static void main(String[] args) { // TODO Auto-generated method stub System.out.println(new Test().test());; } static int test() { int x = 1; try { return x; } finally { ++x; } } } ---------执行结果 ---------
1
运行结果是1,为什么呢?主函数调用子函数并得到结果的过程,好比主函数准备一个空罐子,当子函数要返回结果时,先把结果放在罐子里,然后再将程序逻辑返回到主函数。所谓返回,就是子函数说,我不运行了,你主函数继续运行吧,这没什么结果可言,结果是在说这话之前放进罐子里的。
|