本文实例讲述了Java基础之异常处理操作。分享给大家供大家参考,具体如下:
示例代码:
public class ExecDemo { public static void main(String[] args) { int[] nums = new int[4]; System.out.println("before the exception:"); try { //try代码块 try catch代码块可以嵌套 try{ nums[7] = 10; //数组越界 System.out.println("no exception:"); }catch(ArithmeticException e){ e.printStackTrace(); } }catch(ArithmeticException e) { //catch代码块 多个catch块 e.printStackTrace(); //打印异常信息 }catch(ArrayIndexOutOfBoundsException e){ // 捕获数组越界错误 捕获子类异常 e.printStackTrace(); }catch(Throwable e){ //捕获超类异常 Throwable是所有异常的超类 e.printStackTrace(); } System.out.println("after the exception"); } }
抛出异常:
public class ThrowDemo { public static void main(String[] args) { try { System.out.println("before throw:"); throw new ArithmeticException(); //throw关键字抛出一个ArithmeticException()异常(手动抛出异常) } catch (ArithmeticException e) { //捕获异常 System.out.println("exception caught:"); } System.out.println("after try{}catch{}:"); } }
重新抛出异常:
class Rethrow { public static void genException() { int[] numer = {2,4,6,8,10,12}; int[] demon = {2,0,3,4,0}; for(int i=0;i < numer.length;i++){ try { //try代码块 System.out.println(numer[i]/demon[i]); } catch (ArithmeticException e) { //多个catch()块 System.out.println("can't dev by zero:"); }catch(ArrayIndexOutOfBoundsException e) { System.out.println("no error:"); throw e; //throw 重写抛出异常 } } } } public class RethrowDemo{ public static void main(String args[]) { try { Rethrow.genException(); } catch (ArrayIndexOutOfBoundsException e) { //捕获重新抛出的异常 System.out.println("error error error error error:"); } finally{ //finally代码块在try catch执行完时执行的。 System.out.println("Leaving try."); } } }
throws语句:一个方法产生自己不做处理的异常,用throws抛出到外层(谁调用,谁处理异常)
public class ThrowsDemo { public static char prompt(String str) throws java.io.IOException{//prompt()方法产生自己不做处理的IOException异常,抛出到外层,谁调用谁处理异常 System.out.print(str +":"); return (char) System.in.read(); } public static void main(String[] args) { char ch; try { ch = prompt("enter a letter"); //prompt()可能抛出异常, } catch (java.io.IOException e) { //捕获prompt()抛出的异常 System.out.println("IOException occurred"); ch = 'x'; } System.out.println("you pressed:"+ ch); } }
可以用一个catch()捕获多个异常:
try{ } catch(ArithmeticException|ArrayIndexOutOfBoundsException e){//同时捕获多个异常 }
自定义异常:
class NonIntResultException extends Exception{ //自定义异常继承子Exception int n ,d; NonIntResultException(int i,int j){ n = i; d = j; } public String toString() { return "result of "+ n +"/"+ d +" is non-integer."; } } public class CustomExceptionDemo { public static void main(String[] args) { int numer[] = {4,8,15,32,64,127,256,512}; int denom[] = {2,0,4,4,0,8}; for(int i=0;i<numer.length;i++) { try { if((numer[i]%2)!=0) { throw new NonIntResultException(numer[i],denom[i]); //抛出自定义异常 } System.out.println(numer[i] +"/"+ denom[i] +" is "+ numer[i]/denom[i]); } catch (ArithmeticException e) { //捕获ArithmeticException异常 System.out.println("can't divide by zero!"); }catch (ArrayIndexOutOfBoundsException e) { //捕获ArrayIndexOutOfBoundsException 异常 System.out.println("no matching element found."); }catch (NonIntResultException e) { //捕获自定义异常 System.out.println(e); } } } }
更多java相关内容感兴趣的读者可查看本站专题:《Java面向对象程序设计入门与进阶教程》、《Java数据结构与算法教程》、《Java操作DOM节点技巧总结》、《Java文件与目录操作技巧汇总》和《Java缓存操作技巧汇总》
希望本文所述对大家java程序设计有所帮助。
本文向大家介绍Java异常处理的基础,包括了Java异常处理的基础的使用技巧和注意事项,需要的朋友参考一下 异常-这意味着异常错误。实际上,异常用于处理程序执行期间发生的程序错误。 您可以使用以下关键字在程序中实现异常处理: try -此块在JRE捕获一系列错误,并将其扔到catch块。 catch-捕获try {}块引发的错误。 throw-抛出关键字用于显式或手动抛出异常。 throws-用于
本文向大家介绍Nodejs处理异常操作示例,包括了Nodejs处理异常操作示例的使用技巧和注意事项,需要的朋友参考一下 本文实例讲述了Nodejs处理异常操作。分享给大家供大家参考,具体如下: Exception.js optfile.js router.js 希望本文所述对大家nodejs程序设计有所帮助。
异常是程序执行过程中产生的问题。C# 异常是对程序运行过程中出现的额外情况的一种反馈,例如除数为零时。 异常提供了一种将控制权从程序的一个部分转移到另一个部分的方式。C# 异常处理有四个关键词:try,catch,finally,throw。 try:try 块标识代码块的哪些特定的异常将被激活。它的后面是一个或多个 catch 块。 catch:一个用于捕获异常的程序段,将 catch 放在你希
本文向大家介绍Java异常处理操作实例小结,包括了Java异常处理操作实例小结的使用技巧和注意事项,需要的朋友参考一下 本文实例讲述了Java异常处理操作。分享给大家供大家参考,具体如下: 一 异常处理的使用——能够捕获到异常 1 代码 2 运行 数组超出绑定范围! 这里一定会被执行! main()方法结束! 二 异常处理的使用——不能够捕获到异常 1 代码 2 运行 这里一定会被执行! Exce
本文向大家介绍Java基础异常处理代码及原理解析,包括了Java基础异常处理代码及原理解析的使用技巧和注意事项,需要的朋友参考一下 这篇文章主要介绍了java基础异常处理代码及原理解析,文中通过示例代码介绍的非常详细,对大家的学习或者工作具有一定的参考学习价值,需要的朋友可以参考下 异常的定义:中断了正常指令流的事件。 try..catch..finally结构: 输出结果: throw与thro
Java中有Error和Exception,它们都是继承自Throwable类。 二者的不同之处 Exception: 可以是可被控制(checked) 或不可控制的(unchecked)。 表示一个由程序员导致的错误。 应该在应用程序级被处理。 Error: 总是不可控制的(unchecked)。 经常用来用于表示系统错误或低层资源的错误。 如何可能的话,应该在系统级被捕捉。 异常的分类 Che