欢迎来到天天文库
浏览记录
ID:15344765
大小:141.50 KB
页数:51页
时间:2018-08-02
《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语句来判断是否出现了例外,同时,调用函数通过被调用函数的返回值感知在被调用
此文档下载收益归作者所有