异常分类
异常分类
Exception:编译异常,进行编译(写代码java程序出现的问题)
RuntimeException:运行期异常,java程序过程出现的问题
Error:错误,相当于不能自愈的病,必须修改源代码才能运行
案例:
首先我们先来看第一个 编译异常
public class Ex1 {
public static void main(String[] args) throws ParseException {
SimpleDateFormat format = new SimpleDateFormat("yyyy-MM-dd");
Data data =null;
format.parse(String.valueOf(data));
}
}
它说不能编译时异常,不可以为空
运行时的异常
public static void main(String[] args) throws ParseException {
int[] arr ={1,2,3,4};
System.out.println(arr[4]);
}
}
Error:错误,相当于不能自愈的病,必须修改源代码才能运行
public class Ex1 {
public static void main(String[] args) throws ParseException {
int[] ints = new int[1024*1024*1024];
System.out.println(ints);
}
}