java.lang.NullPointerException 空指针异常
ArithmeticException 算术异常
除数为0
ArrayIndexOutOfBoundsException 索引越界异常
数组索引越界
IndexOutOfBoundsException: Index: 2, Size: 2
Size 表示一共有几个元素
Index表示想要获取哪个元素
java.io.NotSerializableException
如果一个类没有实现 Serializable 接口 , 就进行序列化, 会抛这个异常
类User没有实现 Serializable接口
进行序列化
java.lang.UnsupportedOperationException
数组转集合之后不能增删元素
java.lang.NumberFormatException
Integer构造方法传入非数字的字符串
java.lang.StringIndexOutOfBoundsException
String索引越界异常
Exception in thread “main” java.lang.StringIndexOutOfBoundsException: String index out of range: 10
at java.lang.String.charAt(String.java:658)
at com.jvm.Test.main(Test.java:34)
java.lang.UnsupportedOperationException
Arrays.asList()生成的集合不能增删元素