为了账号安全,请及时绑定邮箱和手机立即绑定

异常处理问题:请问为什么没有打印exception?

异常处理问题:请问为什么没有打印exception?

米琪卡哇伊 2018-12-06 23:51:53
1 public static void main(String[] args) 2 { 3 4 try 5 { 6 Thread thread = new Thread(){ 7 @Override 8 public void run() 9 { 10 int i = 0;11 System.out.println(2/i);12 }13 };14 thread.start();15 }16 catch (Exception e)17 {18 System.out.println("exception");19 }20 }
查看完整描述

1 回答

?
哔哔one

TA贡献1854条经验 获得超8个赞

说明你这个程序没有出现异常,如果出现异常就会进入:

catch (Exception e)
17 {
18 System.out.println("exception");
19 }
中运行,你的程序没有异常,所以就没有进来。
查看完整回答
反对 回复 2018-12-16
  • 1 回答
  • 0 关注
  • 498 浏览

添加回答

举报

0/150
提交
取消
意见反馈 帮助中心 APP下载
官方微信