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

 找回密码
 加入黑马

QQ登录

只需一步,快速开始

public static void main(String[] args) {
                        System.out.println(getNum());   //30
                }
               
                public static int getNum(){
                        int a = 10;
                        try {
                                a = 20;
                                System.out.println(1/0);
                                return a;
                        } catch (Exception e) {
                                System.out.println("123");
                                a = 30;
                                return a;        //关键点在于这里
                        }finally{
                                a = 40;
                        }
                }
求代码输出是多少?

3 个回复

正序浏览
finally,是在打印的后面执行,finally里面的值怎么改变都没有影响的
回复 使用道具 举报

为啥?不是finally的语句最后一定执行吗?
回复 使用道具 举报
结果为30...
回复 使用道具 举报
您需要登录后才可以回帖 登录 | 加入黑马