>>分享Java编程技术,对《Java面向对象编程》等书籍提供技术支持 书籍支持  卫琴直播  品书摘要  在线测试  资源下载  联系我们
发表一个新主题 开启一个新投票 回复文章 您是本文章第 22257 个阅读者 刷新本主题
 * 贴子主题:  Java入门实用代码:多个异常处理(多个catch) 回复文章 点赞(0)  收藏  
作者:flybird    发表时间:2020-01-21 16:14:27     消息  查看  搜索  好友  邮件  复制  引用

  

Java 实例 - 多个异常处理(多个catch)

对异常的处理:

1,声明异常时,建议声明更为具体的异常,这样可以处理的更具体

2,对方声明几个异常,就对应几个catch块, 如果多个catch块中的异常出现继承关系,父类异常catch块放在最下面

以下实例演示了如何处理多异常:                      

ExceptionDemo.java 文件

class   Demo  
{  
     int   div ( int   a , int   b )   throws   ArithmeticException , ArrayIndexOutOfBoundsException // 在功能上通过throws的关键字声明该功能可能出现问题    
     {  
         int   [ ] arr  =  new   int   [ a ] ;  
  
         System . out . println ( arr [ 4 ] ) ; // 制造的第一处异常    
  
         return   a / b ; // 制造的第二处异常    
     }  
}  

  class   ExceptionDemo  
{  
     public   static   void   main ( String [ ] args )   // throws Exception    
     {  
         Demo   d  =  new   Demo ( ) ;  
  
         try {  
                 int   x  =  d . div ( 4 , 0 ) ; // 程序运行截图中的三组示例 分别对应此处的三行代码    
                 // int x = d.div(5,0);    
                 // int x = d.div(4,1);    
                 System . out . println ( " x= " + x ) ;  
         }  
         catch   ( ArithmeticException   e )  
         {  
             System . out . println ( e . toString ( ) ) ;  
         }  
         catch   ( ArrayIndexOutOfBoundsException   e )  
         {  
             System . out . println ( e . toString ( ) ) ;  
         }  
         catch   ( Exception   e ) // 父类 写在此处是为了捕捉其他没预料到的异常 只能写在子类异常的代码后面    
                             // 不过一般情况下是不写的    
         {  
             System . out . println ( e . toString ( ) ) ;  
         }  
          
                     System . out . println ( " Over " ) ;  
     }  
  
}

以上代码运行输出结果为:

java.lang.ArrayIndexOutOfBoundsException: 4
Over



程序猿的技术大观园:www.javathinker.net



[这个贴子最后由 flybird 在 2020-01-27 15:59:43 重新编辑]
网站系统异常


系统异常信息
Request URL: http://www.javathinker.net/WEB-INF/lybbs/jsp/topic.jsp?postID=1527&pages=31

java.lang.NullPointerException

如果你不知道错误发生的原因,请把上面完整的信息提交给本站管理人员