异常处理
1. 什么是异常:
指的是程序在执行过程中,出现的非正常情况,如果不处理最终会导致JVM
的非正常停止。
异常指的并不是语法错误和逻辑错误。语法错了,编译不通过,不会产生字节码文件,根本不能运行。
代码逻辑错误,只是没有得到想要的结果,例如:求a与b的和,你写成了a-b
2. 异常的抛出机制
Java中把不同的异常用不同的类表示,一旦发生某种异常,就
创建该异常类型的对象
,并且抛出(throw)。然后程序员可以捕获(catch)到这个异常对象,并处理;如果没有捕获(catch)这个异常对象,那么这个异常对象将会导致程序终止。
抛出异常的对象
3. 异常体系
java.lang.Throwable
类是Java程序执行过程中发生的异常事件对应的类的根父类。
Throwable中的常用方法:
-
public void printStackTrace()
:打印异常的详细信息。包含了异常的类型、异常的原因、异常出现的位置、在开发和调试阶段都得使用printStackTrace。
-
public String getMessage()
:获取发生异常的原因。
3.1 Error和Exception
是Throwable两个子类:一个代表错误,一个代表异常
-
error:Java虚拟机无法解决的严重问题。如:JVM系统内部错误、资源耗尽等严重情况。一般
不编写针对性的代码进行处理。
- StackOverflowError(栈内存溢出
递归
)和OutOfMemoryError(堆内存溢出,简称OOM)。
- StackOverflowError(栈内存溢出
-
Exception(可以编写针对性代码解决)
- 编译时异常:在代码编译阶段,编译器就能明确
警示
当前代码可能发生(不是一定发生)
xx异常 - 运行时异常:编译通过,运行不通过只有等代码运行起来并确实发生了xx异常,它才能被发现,
可以不处理
。
- 编译时异常:在代码编译阶段,编译器就能明确
- 举例:
public class ExceptionTest {
public static void main(String[] args) {
int[] a = new int[10];
System.out.println(a[10]);
}
}
public class ExceptionTest {
public static void main(String[] args) {
int[] a = new int[10];
a = null;
System.out.println(a[0]);
}
}//NullPointerException
@Test
public void test() {
//ClassCastException
Object object = new String();
String str = (String) object;
Date date = (Date) object;
}
@Test
public void test1() {
//NumberFormatException
String string = "123";
string = "abc";
int i = Integer.parseInt(string);
}
@Test
public void test2() {
//InputMismatchException
Scanner scanner = new Scanner(System.in);
int a = scanner.nextInt();
System.out.println(a);
}
@Test
public void test3() {
//ArithmeticException
int num = 9;
System.out.println(num / 0);
}
@Test
public void test5() throws IOException {
//ClassNotFoundException
File file = new File("E:\\java笔记\\hello.txt");
//FileNotFoundException
FileInputStream fis = new FileInputStream(file);
//java.io.IOException
int data = fis.read();
while (data != -1) {
//hello world
System.out.print((char) data);
data = fis.read();
}
fis.close();
}
}
3.2 异常处理
方式一:try - catch -finally(程序自己处理)
-
抓抛出模型:
- 过程一(抛):程序在执行的过程当中,一旦出现异常,就会在出现
异常的代码处
,生成对应异常类的对象,并将此对象抛出。一旦抛出
,此程序就不执行其后的代码了。 - 过程二(抓):
- 针对于过程①中抛出的异常对象,进行捕获处理。此捕获处理的过程,就称为抓。 一旦将
异常进行了处理
,代码就可以继续执行。
过程:
try{ ...... //可能产生异常的代码 } catch( 异常类型1 e ){ ...... //当产生异常类型1型异常时的处置措施 } catch( 异常类型2 e ){ ...... //当产生异常类型2型异常时的处置措施 } finally{ ...... //无论是否发生异常,都无条件执行的语句 }
-
将可能出现异常的 代码放入
try
中,一旦出现异常,自动生成一个异常类的对象将此异常抛出,给catch匹配,匹配成功,集中处理-
如果声明了多个catch结构,不同的异常类型在
不存在子父类关系
的情况下,谁声明在上面,谁声明在下面都可以。 -
如果多个异常类型满足子父类的关系,则必须将子类声明在
如果多个异常类型满足子父类的关系,则必须将子类声明在。否则,报错。
否则,报错。 -
try中声明的变量,出了try结构之后,就不可以进行调用了。
-
-
catch中异常处理的方式:
① 自己编写输出的语句。
② printStackTrace():打印异常的详细信息。 (推荐)
③ getMessage():获取发生异常的原因。
try { //ClassNotFoundException File file = new File("E:\\java笔记\\hello1.txt"); //FileNotFoundException FileInputStream fis = new FileInputStream(file); //java.io.IOException int data = fis.read(); while (data != -1) { //hello world System.out.print((char) data); data = fis.read(); } } catch (FileNotFoundException e) {//IOException的子类,必须在父类之上 e.printStackTrace();//打印异常信息 } catch (IOException e) { e.printStackTrace(); } }
- 过程一(抛):程序在执行的过程当中,一旦出现异常,就会在出现
-
finally的使用:
finally,无论是否发生异常都会执行的部分
- 理解:将一定要执行的代码放在finall中
- 无论是否try、catch中是否发生异常,或则在try、catch中是否存在return,finally中的语句都会执行
package com.ygc.Exceptions.Concept;
public class TryCatch_Interview {
public static void main(String[] args) {
int result = test("12");
System.out.println(result);
}
public static int test(String string) {
try {
Integer.parseInt(string);
return 1;
} catch (NumberFormatException e) {
return -1;
} finally {
System.out.println("test结束!!!");
}
}
}
package com.ygc.Exceptions.Concept;
public class TryCatch_Interview {
public static void main(String[] args) {
int result = test("a");
System.out.println(result);//0
}
public static int test(String string) {
try {
Integer.parseInt(string);
return 1;
} catch (NumberFormatException e) {
return -1;
} finally {
System.out.println("test结束!!!");
return 0;
}
}
}
finally是可选的
catch
也是可选的,但是在catch、finally、必须有一个与try对应
finally使用的场景:
- 资源:输入流、输出流、数据库连接、Socket链接等资源,在使用完成后必须显示的关闭,否则会导致
内存泄漏
方式二:throws+异常类型(程序调用者处理)
- 将异常抛给程序的调用者(甩锅)
- 到main()必须停止抛出
- 父类方法没有抛出异常,子类方法也不能抛出异常
- 如果父类抛出异常,继承之后,子类可以抛出的异常,只能是父类抛出异常的子类。例如:(父类:Exception、子类:FileNotFoundException)可以写运行时异常:RuntimeException
public class ThrowsTest {
@Test
public void test() throws Exception {
//ClassNotFoundException
File file = new File("E:\\java笔记\\hello1.txt");
//FileNotFoundException
FileInputStream fis = new FileInputStream(file);
//java.io.IOException
int data = fis.read();
while (data != -1) {
//hello world
System.out.print((char) data);
data = fis.read();
}
fis.close();
}
public void method02() {
try {
test();
} catch (Exception e) {
throw new RuntimeException(e);
}
}
}
何时使用try-catch-finally、throws
- 出现资源:try-catch-finally
- 方法重写,父类没有throws:try-catch-finally
- 方法依次调用:方法a中调用了b、c、d方法,b、c、d是递进关系:throws(数据库链接操作)、在main方法中统一使用try-catch-finally处理异常
手动抛出异常:throw 对象(),抛出对象的类型
package com.ygc.Exceptions.Concept;
public class ThrowTest {
public static void main(String[] args) {
Student student = new Student();
try {
student.registe(10);
student.registe(-10);
System.out.println(student);
} catch (Exception e) {
System.out.println(e.getMessage());//输入非法
}
}
}
class Student {
int id;
public void registe(int id) {
if (id > 0) {
this.id = id;
} else {
throw new RuntimeException("输入非法");
}
}
}
自定义异常:
- 自定义一个异常类:必须继承于异常的父类
3.3面试题
final、finally、finalize三者的区别:
标签:处理,try,int,finally,catch,异常,public From: https://www.cnblogs.com/ygcDiary/p/17776811.html三者没有任何关系
- final是变量修饰符、可以修饰成员变量、局部变量、类
- finally是捕获异常使用的一个关键字
- finalize是一个方法、在被垃圾回收之前执行操作,jdk8后已经不推荐使用