码迷,mamicode.com
首页 > 其他好文 > 详细

多层的异常捕获

时间:2019-11-03 21:58:53      阅读:83      评论:0      收藏:0      [点我收藏+]

标签:result   public   inf   system   get   异常捕获   out   cat   catch   

技术图片

 

技术图片

 

 技术图片

 

 技术图片

 

package we;

public class EmbededFinally {

    
    public static void main(String args[]) {
        
        int result;
        
        try {
            
            System.out.println("in Level 1");

           
             try {
                
                System.out.println("in Level 2");
  
               
                 try {
                   
                     System.out.println("in Level 3");
                      
                     result=100/0;  //Level 3
                
                } 
                
                catch (Exception e) {
                    
                    System.out.println("Level 3:" + e.getClass().toString());
                
                }
                
                
                finally {
                    
                    System.out.println("In Level 3 finally");
                
                }
                
               
               

            
                }
            
            catch (Exception e) {
               
                 System.out.println("Level 2:" + e.getClass().toString());
           
             }
             finally {
                
                System.out.println("In Level 2 finally");
           
}
        
        } 
        
        catch (Exception e) {
            
            System.out.println("Level 1:" + e.getClass().toString());
        
        }
        
        finally {
           
             System.out.println("In Level 1 finally");
        
        }
    
    }

}

 

 技术图片

 

 

 

多层的异常捕获

标签:result   public   inf   system   get   异常捕获   out   cat   catch   

原文地址:https://www.cnblogs.com/yyl141/p/11789312.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!