美文网首页
java 基础知识

java 基础知识

作者: 果酱一一 | 来源:发表于2016-03-21 17:49 被阅读6次

    http://www.cnblogs.com/chenssy/p/3651218.html

     public static void main(String[] args){
    
            int test = test();
            if (test == 0){
                System.out.println("test ======0===");
            } else {
                System.out.println("test ======-1===");
            }
        }
    
        public static  int test(){
            try {
                System.out.println("======1===");
                return 0;
            } finally {
                System.out.println("======2===");
                return -1;
            }
        }
    

    结果:
    ======1===
    ======2===
    test ======-1===
    
    

    相关文章

      网友评论

          本文标题:java 基础知识

          本文链接:https://www.haomeiwen.com/subject/yrqhlttx.html