们试想一下,如果去调用一个别人写的方法时,否能知道别人写的方法否会有异常呢?这很难出判断的。针对这种情况,Java中允许在方法的后面使用throws关键字对外声明该方法有可能发生的异常,这样调用者在调用方法时,就明确地知道该方法有异常,并且必须在程序中对异常进行处理,否则编译无法通过。
throws关键字声明抛出异常的语法格式如下:
修饰符返回值类型方法名([参数1,参数2…])throwsExceptiontype1[,ExceptionType2…]{}
从上述语法格式中可以看出,throws关键字需要写在方法声明的后面,throws后面需要声明方法中发生异常的类型,通常将这种法称为方法声明抛出一个异常。们通过案例介绍。
例1:
publicclassExample1{
publicstaticvoidmain(String[]args){
intresult=divide(4,2);//调用divide()方法
System.out.println(result);//的方法实现了两个整数相除,并使用throws关键字声明抛出异常
}
publicstaticintdivide(intx,inty)throwsException{
intresult=x/y;//定义一个变量result记录两个数相除的结果
returnresult;//将结果返回
}
}
运行结果:
D:\cn\itcast\chapter04>javaExample1.java
Example1.java:3::未报告的异常Exception;必须对其进行捕获或者声明以便抛出
intresultdivide(4,2);//调用divide()方法
1个
在上面案例1中第3行代码调用divide()方法时传入的第二个参数为2,程序在运行时不会发生被0除的异常,但由于定义divide()方法时声明抛出了异常,调用者在调用divide()方法时就必须进行处理,否则就会发生编译。案例1进行,在调用divide()方法时对其进行try…catch处理。例2:
publicclassExample2{
publicstaticvoidmain(String[]args){
try{
intresult=divide(4,2);//调用divide()方法
System.out.println(result);
}catch(Exceptione){//对捕获到的异常进行处理
try catch的使用方法e.printstackTrace();//打印捕获的异常信息
}
}
//的方法实现了两个整数相除,并使用throws关键字声明抛出异常
publicstaticintdivide(intx,inty)throwsException{
intresult=x/y;//定义一个变量resu1t记录两个数相除的结果
returnresult;
}
}
运行结果:
D:\cn\itcast\chapter04>javaExample2
2
例2中,由于使用了try…catch对divide()方法进行了异常处理,所以程序编译通过,正确地打印出了运行结果2。
当在调用divide()方法时,如果不知道如何处理声明抛出的异常,也可以使用throws关键字继续将异常抛出,这样程序也能编译通过,但需要注意的,程序一旦发生异常,如果没有被处理,程序就会非正常终止。
例3:
publicclassExample3{
publicstaticvoidmain(String[]args)throwsException{
intresult=divide(4,0);//调用divide()方法
System.out.println(result);
}
//的方法实现了两个整数相除,并使用throws关键词字声明抛出异常
publicstaticintdivide(intx,inty)throwsException{
intresult=x/y;//定义一个变量result记录两个数相除的结果
returnresult;//将结果返回
}
}
运行结果
D:\cn\itcast\chapter04>javaExample3
Exceptioninthread“main”java.lang.ArithmeticException:/byzero
atExample25.divide(Exaple3.java:8)
atexmaple25.main(Examle3.java3)
例3中,在使用main(方法调用divide()方法时,并没有对异常进行处理而继续使用throws关键字将Exception抛出,从运行结果可以看出,程序虽然可以通过编译,但在运行时由于没有对“/byzero”的异常进行处理,最终导致程序终止运行。
以上们介绍了,java中throws关键字的用法,如果深入学习java知识,请击页面按钮了解java课程详情。

版权声明:本站内容均来自互联网,仅供演示用,请勿用于商业和其他非法用途。如果侵犯了您的权益请与我们联系QQ:729038198,我们将在24小时内删除。