Java开发过程中关于异常处理的详解
程序员文章站
2022-06-19 15:23:53
1.运行java时,出现了异常:我这里是因为:arr[3]不存在:java.lang.arrayindexoutofboundsexception: 3public class btyf { p...
1.运行java时,出现了异常:
我这里是因为:arr[3]不存在:
java.lang.arrayindexoutofboundsexception: 3
public class btyf { public static void main(string[] args){ int[] arr={1,2,3}; system.out.println(arr[0]); system.out.println(arr[3]); system.out.println(arr[1]); //1 异常 arrayindexoutofboundsexception 异常名 // btyf.main(btyf.java:13) 异常位置第13行 // //exception in thread "main" java.lang.arrayindexoutofboundsexception: 3 // at btyf.main(btyf.java:13) } }
结果:
java虚拟机:会把异常内容输出控制台
2.处理异常:
public class btyf { public static void main(string[] args){ int[] arr={1,2,3}; system.out.println(arr[0]); try{ system.out.println(arr[3]); }catch (arrayindexoutofboundsexception e) { system.out.println("你访问的数组索引不存在"); e.printstacktrace(); //输出异常数据:控制台 } system.out.println(arr[1]); //1 异常 // arrayindexoutofboundsexception 异常名 // btyf.main(btyf.java:13) 异常位置 //exception in thread "main" java.lang.arrayindexoutofboundsexception: 3 // at btyf.main(btyf.java:13) } }
结果:
通过try抓异常,后面没有异常的代码就不会因为前面的代码一些异常而停止,
就可以执行
3.throwable:成员方法:
system.out.println(e.tostring());//打印出异常内容:位置和名称
e.printstacktrace(); //输出异常数据:控制台
system.out.println(e.getmessage()); 一样
多用:system.out.println(e.tostring());这个
try{ system.out.println(arr[3]); }catch (arrayindexoutofboundsexception e) { //system.out.println("你访问的数组索引不存在"); // e.printstacktrace(); system.out.println(e.getmessage()); //public string getmessage() { // return detailmessage; // } system.out.println(e.tostring()); }
结果:
4.throws:抛出异常:
但是在异常处:还是要添加try catch
添加位置:异常成员方法public static void main(string[] args)throws arrayindexoutofboundsexception{}
代码:
public class uytig { public static void main(string[] args)throws arrayindexoutofboundsexception{ int[] arr={1,2,3}; system.out.println(arr[0]); try { system.out.println(arr[3]); } catch (exception e) { e.printstacktrace(); } system.out.println("执行中"); } }
到此这篇关于java开发过程中关于异常处理的详解的文章就介绍到这了,更多相关java 异常内容请搜索以前的文章或继续浏览下面的相关文章希望大家以后多多支持!