A股上市公司传智教育(股票代码 003032)旗下技术交流社区北京昌平校区
传智教育官网黑马程序员官网
只需一步,快速开始
一步一脚印
中级黑马
黑马币:0
帖子:76
精华:0
© 一步一脚印 中级黑马 / 2013-11-15 09:54 / 1379 人查看 / 3 人回复 / 0 人收藏 转载请遵从CC协议 禁止商业使用本文
static void test() throws Error { if (true) throw new AssertionError(); System.out.print(“test “) } public static void main(String[] args) { try { test(); } catch (Exception ex) { System.out.print(“exception “); System.out.print(“end”) } 复制代码
test方法声明抛出Error, 那抛出的AssertionError异常, 在主函数Exception应该捉不都的吧。???
查看全部评分