try catch 中添加 return ,fianlly中的代码是否依然会执行?

[b] 问题:try catch 中添加 return ,fianlly中的代码是否依然会执行? [/b] 代码: public static void main(String args[]){ try{ int a = 0/0 ; }catch(Exception e){ System.out.println(e.getMessage()); return ; }finally{ System
相关文章
相关标签/搜索