有关try..catch..finally处理异常的总结

//看一下下面的程序,你能正确的写出不同的testEx2()方法时,程序的最终打印出来的数据吗....先不要看下面的答案
public class ExceptionTest {  public ExceptionTest() {  }  boolean testEx() throws Exception {  boolean ret = true;  try {  ret = testEx1();  } catch (Exception e) {  System.out.println("testEx, catch exception");  ret = false;  throw e;  } finally {  System.out.println("testEx, finally; return value=" + ret);  return ret;  }  }  boolean testEx1(){  boolean ret = true;  try {  ret = testEx2(); if(!ret){return false;}System.out.println("testEx1, at the end of try");  return ret;} catch (Exception e) {  System.out.println("testEx1, catch exception");  ret = false;  throw e;  } finally {  System.out.println("testEx1, finally; return value=" + ret);  return ret;  }  }  //第一种:/* boolean testEx2() throws Exception{  boolean ret = true;  try {  int b = 12;  int c;  for (int i = 2; i >= -2; i--) {  c = b / i;System.out.println("i=" + i);  }  return ret;  } catch (Exception e) {  System.out.println("testEx2, catch exception");  ret = false;  throw e;} finally {  System.out.println("testEx2, finally; return value=" + ret);  return ret;  } } *///第二种:boolean testEx2() throws Exception {  boolean ret = true;   int b = 12;  int c;  for (int i = 2; i >= -2; i--) {  c = b / i;  System.out.println("i=" + i);  }  System.out.printf("这句话打打出来了吗??????");return true;  }//第三种:/*boolean testEx2() throws Exception{  boolean ret = true;  try {  int b = 12;  int c;  for (int i = 2; i >= -2; i--) {  c = b / i;System.out.println("i=" + i);  }  return ret;  } catch (Exception e) {  System.out.println("testEx2, catch exception");  ret = false;  throw e;} finally {  System.out.println("testEx2, finally; return value=" + ret);  //return ret;  //此处不写return 语句} //System.out.println("fhsdfsdofi");//因为try中有一个直接return语句,所以这两句不能被访问//return ret;} *///第四种:/*boolean testEx2() throws Exception{  boolean ret = true;  try {  int b = 12;  int c;  for (int i = 2; i >= -2; i--) {  c = b / i;System.out.println("i=" + i);  }   } catch (Exception e) {  System.out.println("testEx2, catch exception");  //ret = false;  throw e;} finally {  System.out.println("testEx2, finally; return value=" + ret);  //return ret;  //此处不写return 语句} System.out.println("这句话打印出来了!!!!");return ret;} *///第五种:/*boolean testEx2() throws Exception{  //提醒一下,第四种和第五种只有catch中有没有 throw e 不一样boolean ret = true;  try {  int b = 12;  int c;  for (int i = 2; i >= -2; i--) {  c = b / i;System.out.println("i=" + i);  }  //return ret;  } catch (Exception e) {  System.out.println("testEx2, catch exception");  ret = false;  //throw e;} finally {  System.out.println("testEx2, finally; return value=" + ret);  //return ret;  //此处不写return 语句} System.out.println("这句话打印出来了!!!!!!!");return ret;}*/public static void main(String[] args) {  ExceptionTest testException1 = new ExceptionTest();  try {  testException1.testEx();  } catch (Exception e) {  e.printStackTrace();  }  }  
}  class myException extends Exception{public void printException(){System.out.println("产生异常!");}
}/*异常看着容易,理解起来也很容易!但是它真的没有你想像的那么简单!
第一种:
i=2
i=1
testEx2, catch exception
testEx2, finally; return value=false
testEx1, finally; return value=false
testEx, finally; return value=false第二种:
i=2
i=1
testEx1, catch exception
testEx1, finally; return value=false
testEx, finally; return value=false第三种:
i=2
i=1
testEx2, catch exception
testEx2, finally; return value=false
testEx1, catch exception
testEx1, finally; return value=false
testEx, finally; return value=false第四种:
i=2
i=1
testEx2, catch exception
testEx2, finally; return value=true
testEx1, catch exception
testEx1, finally; return value=false
testEx, finally; return value=false第五种:
i=2
i=1
testEx2, catch exception
testEx2, finally; return value=false
这句话打印出来了!!!!!!!
testEx1, finally; return value=false
testEx, finally; return value=false总结一下:
一:throw new Exception()第一种情形:(由第二种情形验证)int test() throws Exception{if(....)throw new Exception();....return x;}第二中情形:第五种情况可验证int test() throws Exception{try{if(...)throw new Exception();}catch(ArithmeticException e){//在try中产生的异常没有被捕获时:....}finally{....}.....return x;}在执行到throw 时,第一种先将return返回个调用者(也就是throw和return之间的语句不会被执行),然后再调用程序中寻找处理异常的程序第二种还要将 finally中的语句执行完(即异常有没有被立即处理都要执行finally),(throw和return之间的语句也不会被执行),然后执行return语句,程序转向调用者中寻找异常处理程序。
二:再让我们看一下finally中写return的一些缺憾
1 finally块中的return语句会覆盖try块、catch块中的return语句
2 如果finally块中包含了return语句,即使前面的catch块重新抛出了异常,则调用该方法的语句也不会获得catch块重新抛出的异常,
而是会得到finally块的返回值,并且不会捕获异常,也就是如果在catch或者try中产生的异常如果在向外界抛出是不可能的。。。。第一种情况:testEx2()方法中会产生一个ArithmeticException的异常, Exception是它的父类,我们在该方法中捕获了该异常并进行了处理
所以会输出 testEx2()中的 catch 和 finally 中的输出数据, 而在testEx1()方法中,调用了testEx2(),由于testEx2()中的异常已经被处理
并且由于finally中的return语句导致testEx2()中catch中的throw e 无法重新抛出,所以在testEx1()中不会被捕获。再说一下第四,第五种情况:fianlly中都没有return
在第四种情况中, 由于在catch中继续抛出了该异常,该异常在testEx2()中没有被处理,所以在执行finally之后的语句(除了return语句)不会被执行,
而第五种是没有继续抛出该异常,也就是textEx2()中产生的异常全部被处理了,所以finally之后的语句会被执行.....其他不多说。如果还是没有搞懂的话,推荐看一下下面这个链接,写的不错....
http://blog.csdn.net/hguisu/article/details/6155636
*/

  

转载于:https://www.cnblogs.com/hujunzheng/p/3817703.html

本文来自互联网用户投稿,该文观点仅代表作者本人,不代表本站立场。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如若转载,请注明出处:http://www.mzph.cn/news/531941.shtml

如若内容造成侵权/违法违规/事实不符,请联系多彩编程网进行投诉反馈email:809451989@qq.com,一经查实,立即删除!

相关文章

oracle key的含义,v$session SERIAL#字段的含义

liyx:#!/bin/bash||#Write by liyx||||#数据库服务器地址||DBHOSTlocalhost||#数据库登录名||USERNAMEroot||#数据库密码||PASSWORDroot||#需要备份的数据库 或 输入类似 db1 db2 的列表清单 例 DBNAMES"all"||DBNAMES"ess_simple"||#备份MYSQL…

java.util.Scanner简单应用

import java.util.Scanner; import java.io.*; public class FileScannerTest{public static void main(String args[]){ //**************Scanner 的一般用//1.public Scanner(InputStream source),利用InputStream 对象进行构造Scanner myScanner1 new Scanner(System.in);w…

oracle能查dml记录么,如何查询DML操作的详细记录

可以通过flashback_transaction_qurey视图查询eg:SQL> desc flashback_transaction_queryName Null? Type----------------------------------------- -------- ----------------------------XID …

krpano 场景切换 通知_一个基于Vulkan的异步场景加载设计

异步场景加载基本流程验证完成。此方法理论上只需要使用3个Vulkan的指令队列。对于移动平台上的Vulkan,指令队列数量极少,比如Adreno640只有3个指令队列可用。所以理论上这一设计也适合目前的移动平台使用。(1) graphic_queue:用于完成当前场…

oracle 数据库回闪,各种数据库闪回的总结

本帖最后由 guoyJoe 于 2013-3-26 21:15 编辑一、Fashback Query闪回查询:Books-->APP-->Application Developers Guide - Fundamentals-->Flashback1、应用Flashback Query查询过去的数据select * from t1 as of scn 44545454;select * from t1 as of tim…

poj 2528 Mayor's posters(线段树+离散化)

1 /*2 poj 2528 Mayors posters 3 线段树 离散化4 5 离散化的理解:6 给你一系列的正整数, 例如 1, 4 , 100, 1000000000, 如果利用线段树求解的话,很明显7 会导致内存的耗尽。所以我们做一…

汉仪尚巍手书有版权吗_为什么“汉仪尚巍手书”会大行天下?

昨夜,我写了篇文章《莫选最丑尚巍体,要选美丽中国字!》发到朋友圈、微信群里,得到了一些朋友的反馈,有位朋友居然还认识尚巍,把他的微信推给了我。我加了尚巍的微信,待他通过后,便连…

如何查询linux服务器的网卡,Linux服务器如何查看有没有无线网卡

还是实验室那台服务器,连不上网。有没有界面,所以想着如何用一些命令来链接上热点。当然,在Linux下链接wifi没有win下那么一点就好了!首先我们需要的基本条件就是: 服务器上有无线网卡。[roottomato2 ~]# iwconfiglo n…

java中如何生成可执行的jar文件

java中如何生成可执行的jar文件最简单的方法就是:jar -cfe Card.jar CardLayoutDemo CardLayoutDemo$1.class CardLayoutDemo$myAct ionListener.class CardLayoutDemo.class myClosingListener.class myPanel.class jar命令为java自带的专用打包工具; c…

ecs硬盘数据迁移_阿里云ECS新增数据盘以及迁移数据方法

第一、检查数据占用以及数据盘我们从探针可以看到,本身有30GB的硬盘只用到不到10GB,而且系统和WDCP面板/网站都系统盘中。通过fdisk -l 我们可以看到还有21GB的没有格式化和挂载,系统只用到10.7GB。第二、对数据盘分区fdisk /dev/xvdb第三、查…

linux文件浏览 ls,linux浏览文件命令

在linux下我们要浏览文件的内容,可以通过相关的命令来执行操作,下面由学习啦小编为大家整理了linux下浏览文件命令的相关知识,希望对大家有所帮助!linux浏览文件命令1.cat[功能说明]查看文件的内容#cat本身是一个串接命令,把指定一…

python的多行语句可以使用反斜杠_python 为什么不用分号作终止符?

作者:豌豆花下猫 来源:Python猫一般而言,编程语言中使用分号“;”来实现两种目的:作为语句分隔符:使用分号来分隔语句(statement),这样就能在一行代码中书写多条语句(一行…

linux dlopen 内存,Linux下加载库的有关问题(dlopenm, dlsym)

Linux下加载库的问题(dlopenm, dlsym)如题, 程序中发现load库成功,但是加载函数的时候报错: undefined symbol functionname是很简单的一个东西,因为不熟悉,所以老是弄不好,请各位指导!代码如下&#xff1a…

grafana zabbix 模板_Grafana + Zabbix 监控系统搭建

rafana:一个静态项目,需要联合nginx、apache等使用,友好的如下显示首先安装 grafana官网http://grafana.org/download/ 有好多版本可选,好几种包形式,三种安装方式(官方说明):1、yum直接安装 rpm包&#xf…

java二维数组的常见初始化

public class Test{public static void main(String[] args){//第一种&#xff1a;//int[][] arr1 new int[][]{{1,2}, {2, 3}, {4, 5}};int[][] arr1 {{1,2}, {2, 3}, {4, 5}};System.out.println("arr1的数值&#xff1a;");for(int i0; i<3; i)for(int j0; j…

linux svn 备份脚本,SVN热备份脚本

SVN热备份脚本2011-08-03 徐磊#!/bin/sh########################################################## Script to do incremental rsync backups# modidfy: wanjie.info# date: 2010/06/04# 这个脚本不是xulei写的&#xff0c;我只是拿来主义&#xff0c;当然如果大家看不明白…

python如何删除对象属性_如何优雅的删除对象中的指定属性?

要优雅的话&#xff0c;使用 Lodash 的 omit 方法移除不要的属性&#xff1a;const object { a: 1, b: 2, c: 3 };const result _.omit(object, [a, c]);// > { b: 2 }或者用 pick 方法只留下需要的属性&#xff1a;const object { a: 1, b: 2, c: 3 };const result _.p…

java接口的应用举例

/* 接口的理解&#xff1a; 接口就是前期定义一个规则&#xff01;某一个类A&#xff0c;为了扩展自身的功能&#xff0c;对外提供这个接口&#xff0c;后期只要是符合这个接口&#xff08;规则&#xff09; 的类&#xff08;这个类是接口的子类&#xff09;&#xff0c;将子类…

linux 关闭scp服务器,Linux系统如何关闭scp和sftp命令

Linux系统如何关闭scp和sftp命令。sftp介绍sftp是Secure File Transfer Protocol的缩写&#xff0c;安全文件传送协议。可以为传输文件提供一种安全的加密方法。sftp 与 ftp 有着几乎一样的语法和功能scp介绍两台主机之间传输文件一般使用scp命令,通常用scp命令通过ssh获取对方…

自动补足算法是什么_如何自定义Shell(Fish版)的自动补全规则?

默认fish能自动补全的命令已经相当多了,常见的apt-get&#xff0c;rpm等都没问题&#xff0c;但今天却发现没有lsusb的补全规则,查看了下文档&#xff0c;发现规则比bash-completion简单不少&#xff0c;记录下&#xff5e;简单补全1. 建立自动补全规则文件默认自动补全路径由全…