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

异常注意事项

时间:2017-06-27 19:58:47      阅读:110      评论:0      收藏:0      [点我收藏+]

标签:独立   []   void   todo   logs   cat   catch   generate   public   

  • try   catch  finally return
  • public  int  f(){
        try{
            String demo=null;
            demo.split("a");
            System.out.println("try");                
        }catch(Exception e){        
            System.out.println("catch");               
        }finally{    
            System.out.println("finally");               
        }
    }  
        public static void main(String[] args) {
            // TODO Auto-generated method stub
            haha a=new haha();
            a.f();
        }
    }

     

  • catch 不能独立于 try 存在。
  • 在 try/catch 后面添加 finally 块并非强制性要求的。
  • try 代码后不能既没 catch 块也没 finally 块。
  • try, catch, finally 块之间不能添加任何代码

异常注意事项

标签:独立   []   void   todo   logs   cat   catch   generate   public   

原文地址:http://www.cnblogs.com/-strong/p/7086524.html

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