java try 返回值,Java的返回值在try-catch-finally机制

I have just encountered this following code:

public class TestFinally {

public static void main(String[] args) {

int returnValue = function();

System.out.println("Return value: " + returnValue);

}

public static int function() {

try {

return 1;

} catch (Exception e){

return 2;

} finally{

return 3;

}

}

}

It is without a doubt that running this code will yield an output of "Return value: 3".

However, I am curious as to:

The mechanism of the innards in the JVM. Does anyone know if the VM actually replaces the return value on the stack by over-writing the first "return 1"? If so, where can I find more information on this.

I have yet to find the use for a return in the finally mechanism that is used this way and allowed in the implemented

in the JVM. If this code construct is used as a means to return

error code, it is in my opinion there are better ways to log errors

or return these error codes. Has anyone found a use for such a

construct?

Many thanks in advance.

Cheers,

Vern

解决方案

What I found in the Java language specification at least defines that your code snippet should return 3. Of course, it does not mention how the JVM should implement this, and what possible optimizations one could do.

Section 14.20.2 defines that

If execution of the try block completes abruptly for any other reason R, then the finally block is executed. Then there is a choice:

If the finally block completes normally, then the try statement completes abruptly for reason R.

If the finally block completes abruptly for reason S, then the try statement completes abruptly for reason S (and reason R is discarded).

And the start of chapter14 (section 14.1 to be more precise) specifies what a normal and abrupt completion is. For example a return with a given value is an abrupt completion.

Hence in this case, the finally block completes abruptly (reason: return with a given value), so the try will complete abruptly for the same reason (and return 3). This is confirmed in section 14.17 about the return statement as well

If evaluation of the Expression completes normally, producing a value V, then the return statement completes abruptly, the reason being a return with value V.

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值