Java异常处理的五个关键字
异常:异常有的是因为⽤户错误引起,有的是程序错误引起的,还有其它⼀些是因为物理错误引起的。异常处理关键字:try、catch、finally、throw、throws
注意事项:
1. 错误不是异常,⽽是脱离程序员控制的问题。
2. 所有的异常类是从 java.lang.Exception 类继承的⼦类。
3. 异常类有两个主要的⼦类:IOException 类和 RuntimeException 类。
4. Java有很多的内置异常类。
异常⼤致分类:
1. ⽤户输⼊了⾮法数据。
2. 要打开的⽂件不存在。
3. ⽹络通信时连接中断,或者JVM内存溢出。
语法:
try{
//需要监听的代码块
}
catch(异常类型异常名称/e){
//对捕获到try监听到的出错的代码块进⾏处理
throw 异常名称/e; //thorw表⽰抛出异常
throw new 异常类型(“⾃定义”);
}
finally{
//finally块⾥的语句不管异常是否出现,都会被执⾏
}
修饰符返回值⽅法名 () throws 异常类型{ //throws只是⽤来声明异常,是否抛出由⽅法调⽤者决定
//代码块
}
代码例⼦:(try与catch与finally)
public class ExceptionTest {
public static void main(String[] args) {
Scanner input=new Scanner(System.in);
try catch的使用方法try{ //监听代码块
int Int();
int Int();
double sum=a/b;
System.out.println(sum);
}
catch(InputMismatchException e){
System.out.println("只能输⼊数字");
}
catch(ArithmeticException e){
System.out.println("分母不能为0");
}
catch(Exception e){ //Exception是所有异常的⽗类
System.out.println("发⽣了其他异常");
}
finally{ //不管是否出现异常,finally⼀定会被执⾏
System.out.println("程序结束");
}
}
}
代码例⼦:(throw关键字)
import java.util.InputMismatchException;
import java.util.Scanner;
public class ExceptionTest {
public static void main(String[] args) {
Scanner input=new Scanner(System.in);
try{ //监听代码块
int Int();
int Int();
double sum=a/b;
System.out.println(sum);
}
catch(InputMismatchException e){ //catch(异常类型异常名称)
System.out.println("只能输⼊数字");
throw e; //抛出catch捕捉到的异常
//throw new InputMismatchException(); 同上
}
catch(ArithmeticException e){
System.out.println("分母不能为0");
throw new ArithmeticException("分母为0抛出异常"); //抛出ArithmeticException异常
}
catch(Exception e){ //Exception是所有异常的⽗类
System.out.println("发⽣了其他异常");
}
finally{ //不管是否出现异常,finally⼀定会被执⾏
System.out.println("程序结束");
}
}
}
代码例⼦:(throws)
public class Throws {
int a=1;
int b=0;
public void out() throws ArithmeticException{ //声明可能要抛出的异常,可以有多个异常,逗号隔开 try{ //监听代码块
int sum=a/b;
System.out.println(sum);
}
catch(ArithmeticException e){
System.out.println("分母不能为0");
}
finally{ //不管是否出现异常,finally⼀定会被执⾏
System.out.println("程序结束");
}
}
public static void main(String[] args){
Throws t=new Throws();
t.out(); //调⽤⽅法
throw new ArithmeticException("分母为0抛出异常"); //由调⽤的⽅法决定是否要抛出异常
/*
* 第⼆种抛出⽅式
*/
// ArithmeticException a=new ArithmeticException("分母为0抛出异常");
// throw a;
}
}
版权声明:本站内容均来自互联网,仅供演示用,请勿用于商业和其他非法用途。如果侵犯了您的权益请与我们联系QQ:729038198,我们将在24小时内删除。
发表评论