问答详情
源自:1-5 Java 中的异常抛出以及自定义异常

我想试试这样会不会重写exception,结果运行不了。

为什么运行不了? package exceptionClass; public class exceptionClass { public int getC(int a,int b){ int c=a/b; return c; } public void nothing() throws Exception{ throw new Exception("对,我就是没事找事。"); } public static void main(String[] args){ try { int a=10/0; } catch (Exception e) { } } }

提问者:qq_旧神_三咸鱼_0 2017-08-02 20:44

个回答

  • 慕仰020268
    2017-08-02 21:18:27

    你把抛出异常的类型指定一下试试,我记得这个应该是空指针还是啥的,你去查查试试看