java基础检查和未检查异常处理详解
程序在运行时如果出错,编译器会抛出异常,异常如果没有被捕捉处理,程序会终止运行。异常分为未检查异常和已检查异常,以下对这两类异常做进一步说明。
检查异常
已检查异常(checked exceptions),编译器强制要求捕获并处理可能发生的异常,不处理就不能通过编译,如:IOException、SQLException以及用户自定义的Exception异常。如下图所示,程序运行时会因为IO等错误导致异常,要求处理异常,需要手动处理关闭释放资源。
继续抛出,通过throws exception抛出,代码如下:
public static void readFile() throws FileNotFoundException { String filename = "D:\\demo1.txt"; File file = new File(filename); BufferedReader reader = null; StringBuffer sbf = new StringBuffer(); reader = new BufferedReader(new FileReader(file)); }
在方法使用 throws FileNotFoundException ,将异常向上抛。
使用try catch或try catch finally对异常进行捕获然后进行处理,代码如下:
public static void main(String[] args) { String filename ="D:\\demo.txt"; File file =new File(filename); BufferedReader reader=null; StringBuffer sbf = new StringBuffer(); try { reader = new BufferedReader(new FileReader(file)); } catch (FileNotFoundException e) { e.printStackTrace(); } finally { } }
未检查异常
未检查异常(unchecked exceptions),这类异常也叫RuntimeException(运行时异常),编译器不要求强制处置的异常,如:NullPointerException,IndexOutOfBoundsException,VirtualMachineError等异常。如:以下代码向上抛出异常,但调用时编译器并不强制要求处理异常
public static void convert(String str) throws NumberFormatException{ Long num = Long.parseLong(str); System.out.println(num); }
调用方代码如下:
public static void main(String[] args) { convert("ww123"); }
编译器并未出现强制要求使用处理异常,因为NumberFormatException异常是RuntimeException(运行时异常)。未检查异常通常处理方法为捕获、继续抛出和不处理,这类异常通常输出至控制台,编程人员手动的去查找问题。
总结
检查异常是编译器强制要求捕获并处理可能发生的异常,包括IOException、SQLException以及用户自定义的Exception等;未检查异常是编译器不强制要求捕获并处理可能发生的异常,包括RuntimeException类异常。JDK常见异常类图如下:
以上就是java基础检查和未检查异常处理详解的详细内容,更多关于java检查和未检查异常处理的资料请关注自由互联其它相关文章!
【文章出处http://www.nextecloud.cn/kt.html欢迎转载】