异常注意事项

Posted 冰逸101

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了异常注意事项相关的知识,希望对你有一定的参考价值。

  • 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 块之间不能添加任何代码

以上是关于异常注意事项的主要内容,如果未能解决你的问题,请参考以下文章

片段中的Android致命异常

mvn命令异常:An error has occurred in Javadoc report generation: Unable to find javadoc command异常已解决(代码片段

mvn命令异常:An error has occurred in Javadoc report generation: Unable to find javadoc command异常已解决(代码片段

springcloud报错-------关于 hystrix 的异常 FallbackDefinitionException:fallback method wasn't found(代码片段

片段中的getView()导致抛出异常,不确定原因

片段中的 EditText 上的空指针异常 [重复]