trycatchfinally
Posted canzhen
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了trycatchfinally相关的知识,希望对你有一定的参考价值。
题:
try { try { System.out.println("A"); throw new Exception("1"); }catch (Exception e){ System.out.println("B"); throw new Exception("2"); }finally { System.out.println("C"); throw new Exception("3"); } }catch (Exception e){ System.out.println(e.getMessage()); }
运行结果:
以上是关于trycatchfinally的主要内容,如果未能解决你的问题,请参考以下文章