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

try finlly return

时间:2019-07-11 17:36:28      阅读:112      评论:0      收藏:0      [点我收藏+]

标签:try   static   style   htm   ref   blog   color   int   str   

public class Test {
    public static void main(String[] args) {
        System.out.println();
            System.out.println(new Test().test()); //1
     }
    static int test() {
        int x= 1;
        try  {
            return x;
        } finally {
            ++x;
            System.out.println(x);
        }
    }
}

 

http://blog.sina.com.cn/s/blog_69d4185b010197h8.html

try finlly return

标签:try   static   style   htm   ref   blog   color   int   str   

原文地址:https://www.cnblogs.com/xuwangqi/p/11171043.html

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