标签:图片 get exception out image message color row 结果
题:
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()); }
运行结果:
标签:图片 get exception out image message color row 结果
原文地址:https://www.cnblogs.com/canzhen/p/12969707.html