JAVA try-catch-finally-return
- 正常执行流程:
- 含return语句执行流程分析:
- 对x执行运算x=x+1 (若有运算)
- 复制一个变量x给try的return语句(按值复制:基本类型就是值本身,对象就是地址值)
- 但return语句并不马上返回,控制权转移到finally块中执行: (1)若finally中无return语句:finally执行完后,try块执行return语句返回之前复制的变量x(基本类型就是值本身,对象就是地址值)(所以:若x为基本类型,fianlly中改变x对最终return结果无效;若x为对象类型,按地址值传递可以改变x的最终return结果) (2)若finally中有return语句:执行后直接返回(即“覆盖try中return语句”:try中return语句不再返回)
- finally不执行的特殊情况:
- if you call System.exit() or
- if the JVM crashes first
- A return statement in the finally block is a bad idea:
publicstaticint getANumber(){
try{
thrownewNoSuchFieldException();
} finally {
return43;
}
}
- If the return in the try block is reached, it transfers control to the finally block, and the function eventually returns normally (not a throw).
- If an exception occurs, but then the code reaches a return from the catch block, control is transferred to the finally block and the function eventually returns normally (not a throw).
- In your example, you have a return in the finally, and so regardless of what happens, the function will return 34, because finally has the final (if you will) word.
- 在try中含有return+基本类型情况:
publicclassFinallyTest1{
publicstaticvoid main(String[] args){
System.out.println(test1());
}
publicstaticint test1(){
int b =20;
try{
System.out.println("try block");
return b +=80;
}
catch(Exception e){
System.out.println("catch block");
}
finally {
System.out.println("finally block");
if(b >25){
System.out.println("b>25, b = "+ b);
}
}
return b;
}
}
try block
finally block
b>25, b =100
100
- 在catch中含有return+基本类型情况(分析跟在try中含有return情况一样):
publicclassTest{
publicstaticvoid main(String[] args){
System.out.println(test1());
}
publicstaticint test1(){
int b =20;
try{
int a =1/0;//触发异常
System.out.println("try block");//不会被执行
return b +=80;//不会被执行
}
catch(Exception e){
System.out.println("catch block");
return b +=180;//最后在此返回
}
finally {
System.out.println("finally block");
if(b >25){
System.out.println("b>25, b = "+ b);
}
}
// return b;
}
}
catch block
finally block
b>25, b =200
200
- 在try中含有return+对象类型情况:
publicclassTest{
publicstaticvoid main(String[] args){
System.out.println(getMap().get("KEY").toString());
}
publicstaticMap<String,String> getMap(){
Map<String,String>map=newHashMap<String,String>();
map.put("KEY","INIT");
try{
map.put("KEY","TRY");
returnmap;//return在控制权转移到finally前:复制了一个map对象的地址值(对象按地址值传递)
}
catch(Exception e){
map.put("KEY","CATCH");
}
finally {
map.put("KEY","FINALLY");//根据对象地址值修改对象内容(按地址值传递),因此会影响try中return返回的对象内容
map= null;//map为null即不再指向该对象,
// 但由于前面return复制了一个对象的引用(地址值),而对象是被分配在堆中的,只要有引用指向这个对象,系统就不会回收此对象,
所以此处map = null 并不会影响最后try中return返回对象内容}
returnmap;
}
}
FINALLY
- 在catch中含有return+基本类型情况(分析跟在try中含有return情况一样):
publicclassTest{
publicstaticvoid main(String[] args){
System.out.println(getMap().get("KEY").toString());
}
publicstaticMap<String,String> getMap(){
Map<String,String>map=newHashMap<String,String>();
map.put("KEY","INIT");
try{
int a =1/0;//触发异常
map.put("KEY","TRY");//不会被执行
returnmap;//不会被执行
}
catch(Exception e){
map.put("KEY","CATCH");
returnmap;//return在控制权转移到finally前:复制了一个map对象的地址值(对象按地址值传递)
}
finally {
map.put("KEY","FINALLY");//根据对象地址值修改对象内容(按地址值传递),因此会影响catch中return返回的对象内容
map= null;//map为null即不再指向该对象,
// 但由于前面return复制了一个对象的引用(地址值),而对象是被分配在堆中的,只要有引用指向这个对象,系统就不会回收此对象,
// 所以此处map = null 并不会影响最后catch中return返回对象内容
}
// return map;
}
}
FINALLY
publicclassTest{
publicstaticvoid main(String[] args){
System.out.println(test2());
}
publicstaticint test2(){
int b =20;
try{
System.out.println("try block");
return b +=80;
}catch(Exception e){
System.out.println("catch block");
} finally {
System.out.println("finally block");
if(b >25){
System.out.println("b>25, b = "+ b);
}
return200;
}
// return b;
}
}
try block
finally block
b>25, b =100
200
JAVA try-catch-finally-return的更多相关文章
- java try catch finally return执行
public static int testBasic(){ int i = 1; try{ i++; System.out.println("try block, i = "+i ...
- 【Java疑难杂症】有return的情况下try catch finally的执行顺序
有这样一个问题,异常处理大家应该都不陌生,类似如下代码: public class Test { public static void main(String[] args) { int d1 = 0 ...
- 可惜Java中没有yield return
项目中一个消息推送需求,推送的用户数几百万,用户清单很简单就是一个txt文件,是由hadoop计算出来的.格式大概如下: uid caller 123456 12345678901 789101 12 ...
- 异常 try catch finally return 执行关系 MD
Markdown版本笔记 我的GitHub首页 我的博客 我的微信 我的邮箱 MyAndroidBlogs baiqiantao baiqiantao bqt20094 baiqiantao@sina ...
- Java_try,catch,finally return之间的执行顺序
以往认为函数只要执行到return语句便会返回结果并终止,然而这时错误的,因为这存在特例. 掌握下面几条原则就可以完全解决“当try.catch.finally遭遇return”的问题. 原则:1.f ...
- try catch finally return之间的关系
一.try catch finally return之间的关系: 正在写dsoFramer的时候,同事突然说面试的时候问的一个问题,catch和return那个先执行,我瞬间迷茫了,然后整理了整理,稍 ...
- Intellij Idea 12 开发Android 报Caused by: java.lang.UnsatisfiedLinkError: FindLibrary return null;
这次开发是用的百度地图api,导入两个so文件,结果启动的时候总是报Caused by: java.lang.UnsatisfiedLinkError: findlibrary return null ...
- Hint: Fallback method 'public java.lang.String queryUserByIdFallback(java.lang.Long)' must return: User or its subclass
1.错误日志 熔断器添加错误方法返回时,报了一个 error. com.netflix.hystrix.contrib.javanica.exception.FallbackDefinitionExc ...
- try catch finally return运行顺序
首先让我们搞懂两组概念:try catch finally和return 1.try catch finally 首先说try catch, (1)try语句 ,try语句用来包围可能出现异常的代码片 ...
- 理清Java中try-catch-finally带return的执行顺序
前言:try-catch-finally带return和异常时,它们之间执行顺序问题是留下来的一个小疑问,今天搞清楚它们 第一种情况:无异常 //1.try-catch-finally都带有retur ...
随机推荐
- JavaScript--对象+函数
1. 复杂数据类型 Object ECMAScript中的对象其实就是一组数据(属性)和功能(方法)的集合. 1) 创建Object实例: 1.使用构造函数创建,new Object() ...
- addEventListener之handleEvent
addEventListener() 方法是将指定的事件监听器注册到目标对象上,当该对象触发指定的事件时,指定的回调函数就会被执行.语法: element.addEventListener(type, ...
- 通过dbcp链接池对数据库操作报 Cannot create PoolableConnectionFactory (Could not create connection to database server. Attempted reconnect 3 times. Giving up.)--解决方案
org.springframework.transaction.CannotCreateTransactionException: Could not open JDBC Connection for ...
- C++封装常用对象和对头文件探索
在C++实际开发中,难免会使用到一些你极为常用的算法(比如笔者经常使用的多线程技术),实现这些算法的类或是全局函数或是命名空间等等经常都要被使用多次,你会有哪些办法来使用呢?笔者有4个办法. 第一个方 ...
- iPhone 6 图像渲染揭秘(转)
几天前,Apple发布了iPhone 6 Plus. 新的iPhone大幅改变了图像在屏幕上渲染的方式.我们做了一个图表进行详细分析. 分析. 转自:转送
- Linux Chaining Operators用法学习
Linux Chaining Operators顾名思义,就是连接命令的操作,有些时候,往往一些命令可以用一行命令代替,我们就不需要大动干戈再去写Shell Script了,掌握和学习这些Chaini ...
- Web Services
Web Services 1. Web Services基本规范概述 1.1. 什么是Web Services Web Services是为实现“基于Web无缝集成”的目标而提出的全新 ...
- Django filter中用contains 在mysql中的问题
用PYTHON ,DJANGO 做站,在通常的情况下,需要用到 orM 的查询方法,比如object.filter(tag__contains='keywords').... 在这种情况下,如果你跟踪 ...
- Erget 显示对象
核心显示类: 类 描述 DisplayObject 显示对象基类,所有显示对象均继承自此类 Bitmap 位图,用来显示图片 Shape 用来显示矢量图,可以使用其中的方法绘制矢量图形 TextFie ...
- Scut 进阶:网络模型拓扑
处理消息流程: 关于是否能用 json 串作为 response? 在最后写消息的时候要加上控制选项,将Response类型,事直接以字节流,还是转json串再转字节流的方式进行编码了,如果要转jso ...