Multiple returns: Which one sets the final return value?(多重返回:哪一个设置最终返回值?)
问题描述
鉴于此代码:
String test() {
try {
return "1";
} finally {
return "2";
}
}
语言规范是否定义了调用 test() 的返回值?换句话说:在每个 JVM 中它总是相同的吗?
Do the language specifications define the return value of a call to test()? In other words: Is it always the same in every JVM?
在 Sun JVM 中,返回值为 2,但我想确定,这与 VM 无关.
In the Sun JVM the return value is 2, but I want to be sure, that this is not VM-dependant.
推荐答案
是的,语言规范 定义2"是结果.如果 VM 的做法有所不同,则说明它不符合规范.
Yes, the language spec defines that "2" is the result. If a VM does it differently, it's not spec-compliant.
大多数编译器都会抱怨它.例如 Eclipse 会声称返回块永远不会被执行,但这是错误的.
Most compilers will complain about it. Eclipse, for example, will claim that the return block will never be executed, but it's wrong.
编写这样的代码是非常糟糕的做法,永远不要这样做:)
It's shockingly bad practice to write code like that, don't ever do it :)
这篇关于多重返回:哪一个设置最终返回值?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
本文标题为:多重返回:哪一个设置最终返回值?
基础教程推荐
- 修改 void 函数的输入参数,然后读取 2022-01-01
- Spring AOP错误无法懒惰地为此建议构建thisJoinPoin 2022-09-13
- RabbitMQ:消息保持“未确认"; 2022-01-01
- REST Web 服务返回 415 - 不支持的媒体类型 2022-01-01
- 使用堆栈算法进行括号/括号匹配 2022-01-01
- 无法复制:“比较方法违反了它的一般约定!" 2022-01-01
- 如何对 Java Hashmap 中的值求和 2022-01-01
- 问题http://apache.org/xml/features/xinclude测试日志4j 2 2022-01-01
- Struts2 URL 无法访问 2022-01-01
- 存储 20 位数字的数据类型 2022-01-01
