当前位置: 代码迷 >> J2SE >> JAVA菜鸟错误有关问题
  详细解决方案

JAVA菜鸟错误有关问题

热度:234   发布时间:2016-04-24 15:28:43.0
JAVA初学者异常问题
public   class   Employee{
      public   static   void   main(String[]   args)     {
             
              try
              {
                      fangfa();
              }
             
              catch(ArrayIndexOutOfBoundsException   e)
              {
                      System.out.println( "ArrayIndexOutOfBoundsException抓到异常! ");
                      throw   e;
              }
             
              catch(Exception   a)
              {
                      System.out.println( "Excetption抓到异常了! ");
              }

      }
      public   static   void   fangfa()   throws   ArrayIndexOutOfBoundsException
      {
              throw   new   ArrayIndexOutOfBoundsException();
      }
}


这些代码咋运行出错了?   谁告诉我一下。谢谢!


------解决方案--------------------
如果你想捕捉throw e 处的异常,需再写一份try catch块
  相关解决方案