多个catch捕获异常顺序

写出程序结果 ```线程 class Exc0 extends Exception{} class Exc1 extends Exc0{}io class Demo { public static void main(String[] args) { try { throw new Exc1(); }  catch(Exception e)  { System.out.println("Excep
相关文章
相关标签/搜索