trycatchfinally大总结

trycatchfinally大总结

ID:15344765

大小:141.50 KB

页数:51页

时间:2018-08-02

trycatchfinally大总结_第1页
trycatchfinally大总结_第2页
trycatchfinally大总结_第3页
trycatchfinally大总结_第4页
trycatchfinally大总结_第5页
资源描述:

《trycatchfinally大总结》由会员上传分享,免费在线阅读,更多相关内容在学术论文-天天文库

1、try,catch,finally,return的执行顺序(2009-09-2116:20:04)转载▼标签:杂谈基础篇:注:文章内容由网络及相关书籍整理而来,如此只为共享知识,给予帮助。避开云山雾绕的概念拼凑,单刀直入,看实例。importjava.io.*;publicclassMine{publicstaticvoidmain(Stringargs[]){Minem=newMine();System.out.println(m.amethod());}publicintamethod(){try{FileInputStreamdis=newFileInputStream("He

2、llo.txt");//步骤1,抛出异常}catch(Exceptione){System.out.println("Nosuchfilefound");//步骤2,catch捕获异常,并执行return-1;//步骤4,return返回}finally{System.out.println("Executefinally");//步骤3,finally一定会执行,在return之前。}return0;}}运行结果:C:java>javaMineNosuchfilefoundExecutefinally-1本文来自CSDN博客,转载请标明出处:http://blog.csdn.ne

3、t/sdust_zh/archive/2008/09/27/2986618.aspx进阶篇:packagecom.javaproject.test;publicclassTestException{publicTestException(){}booleantestEx()throwsException{booleanret=true;try{ret=testEx1();}catch(Exceptione){System.out.println("testEx,catchexception");ret=false;throwe;}finally{System.out.println(

4、"testEx,finally;returnvalue="+ret);returnret;}}booleantestEx1()throwsException{booleanret=true;try{ret=testEx2();if(!ret){returnfalse;}System.out.println("testEx1,attheendoftry");returnret;}catch(Exceptione){System.out.println("testEx1,catchexception");ret=false;throwe;}finally{System.out.print

5、ln("testEx1,finally;returnvalue="+ret);returnret;}}booleantestEx2()throwsException{booleanret=true;try{intb=12;intc;for(inti=2;i>=-2;i--){c=b/i;System.out.println("i="+i);}//returntrue;}catch(Exceptione){System.out.println("testEx2,catchexception");ret=false;throwe;}finally{System.out.println("

6、testEx2,finally;returnvalue="+ret);//returnret;}System.out.println("test");returnfalse;}publicstaticvoidmain(String[]args){TestExceptiontestException1=newTestException();try{testException1.testEx();}catch(Exceptione){e.printStackTrace();}}}答案:i=2i=1testEx2,catchexceptiontestEx2,finally;returnva

7、lue=falsetestEx1,finally;returnvalue=falsetestEx,finally;returnvalue=false2基础知识2.1相关概念例外是在程序运行过程中发生的异常事件,比如除0溢出、数组越界、文件找不到等,这些事件的发生将阻止程序的正常运行。为了加强程序的鲁棒性,程序设计时,必须考虑到可能发生的异常事件并做出相应的处理。C语言中,通过使用if语句来判断是否出现了例外,同时,调用函数通过被调用函数的返回值感知在被调用

当前文档最多预览五页,下载文档查看全文

此文档下载收益归作者所有

当前文档最多预览五页,下载文档查看全文
温馨提示:
1. 部分包含数学公式或PPT动画的文件,查看预览时可能会显示错乱或异常,文件下载后无此问题,请放心下载。
2. 本文档由用户上传,版权归属用户,天天文库负责整理代发布。如果您对本文档版权有争议请及时联系客服。
3. 下载前请仔细阅读文档内容,确认文档内容符合您的需求后进行下载,若出现内容与标题不符可向本站投诉处理。
4. 下载文档时可能由于网络波动等原因无法下载或下载错误,付费完成后未能成功下载的用户请联系客服处理。