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

TryCatchTest

时间:2017-05-28 23:15:47      阅读:199      评论:0      收藏:0      [点我收藏+]

标签:equals   oid   catch   int   exception   null   string   span   except   

public class TryCatchTest {
    
    public static void main(String[] args) {
        System.out.println("程序开始");
        try {
            System.out.println("程序 1");
            String str=null;
            str.equals("");
            System.out.println("程序 2");
            //return;
        } catch (Exception e) {
            System.out.println("程序 3");
            return;
        }finally {
            System.out.println("程序 4");
        }
        System.out.println("程序 5");
    }

}
finally 里的代码一定会执行

TryCatchTest

标签:equals   oid   catch   int   exception   null   string   span   except   

原文地址:http://www.cnblogs.com/H-BolinBlog/p/6916827.html

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