问答详情
源自:1-3 Java中通过案例学习 try...catch...finally

为什么catch(exception e )中的exception类型会出错?

http://img.mukewang.com/573d0be40001b07803150116.jpg

catch(Expetion e){

e.printStackTrace();

System.out.println("输出异常");

}


提问者:The_Rock 2016-05-19 08:42

个回答

  • 束先森
    2016-05-19 08:51:40
    已采纳

    因为你拼错了  Exception

  • 餘音繞梁0
    2016-05-19 08:54:14

    catch(Exception e)