1. Java.lang.nullpointerexception
异常的解释是"程序遇上了空指针",简单地说就是调用了未经初始化的对象或者是不存在的对象,
2. java.lang.classnotfoundexception
3. java.lang.arithmeticexception
这个异常的解释是"数学运算异常",比如程序中出现了除以零这样的运算就会出这样的异常,对这种异常,
4. java.lang.arrayindexoutofboundsexception
异常的解释是"数组下标越界",看自己调用的下标是不是超出了数组的范围
5.类型强制转换异常:ClassCastException