A股上市公司传智教育(股票代码 003032)旗下技术交流社区北京昌平校区

 找回密码
 加入黑马

QQ登录

只需一步,快速开始

用代码证明,在try中写了return,后面又写了finally,是先

3 个回复

倒序浏览
package com.heima.IO;

public class Day1_ClassTest2 {
        public static void main(String[] args) {

                System.out.println(test());

        }

        public static int test() {
                try {

                        System.out.println(10 / 0);
                        return 10;
                } catch (Exception e) {
                        int i = 20;
                        return i;
                } finally {
                        int i = 30;
                }
        }

}
回复 使用道具 举报 1 0
何亚辉 发表于 2016-6-7 15:47
package com.heima.IO;

public class Day1_ClassTest2 {

额,好像是这样子
回复 使用道具 举报
测试了下,是try先执行,然后finally,最后是方法的返回值,然后在main函数中打印
回复 使用道具 举报
您需要登录后才可以回帖 登录 | 加入黑马