本帖最后由 tongdu_simon 于 2012-2-28 19:23 编辑
可以自己写个测试代码,试试就知道了- class Test
- {
- public static void main(String[] args)
- {
- try
- {
- System.out.println("TRY...");
- throw new Exception();
- }
- catch(Exception e){
- System.out.println("CATCH...");
- return;
- }
- finally
- {
- System.out.println("FIN...");
- }
- }
- }
复制代码 运行结果:
另外可参考:
传智播客_Java培训_毕向东_Java基础[04-继承下].pdf
|