135.意外的类
|
|
- Throwable 有两个子类
- Error, 例如 OutOfMemoryError , 它们不是必须 caught 的, 因为尽管它们是严重的,
但是无法预计, 而且可能在任何地方发生!
- 我们已经讨论过的Exception
- Exception 有一个子类 RuntimeException, 不需要 caught
- 典型的 RuntimeException 子类有
- ArithmeticException ClassCastException IndexOutofBoundException
Copyright: NPACT |
|