一、Exception和RuntimeException的区别
- Exception是RuntimeException的父类,使用了 Exception 的类都必须对异常进行处理(try / throw / throws)
- RuntimeException 可以由选择性的对异常进行处理(可以不处理)
二、常见的 RuntimeException(即RuntimeException的子类)
- ClassCastException
- FileSystemNotFoundException
- IndexOutOfBoundsException
- NullPointerException