Java基础知识-异常


异常(Throwable) 

  Exception

    运行时异常

      1/0、ClassNotFound、NullPoint、 UnkownType、 下标越界

    检查异常

  Error

    AWT错误

    JVM错误

      StackOverFlow

      OutOfMemory

处理异常

  try、catch、finally

  throw:在方法中由程序员主动抛出异常

  throws:在方法定义时定义,表示这个方法可能抛出异常