logo - 刷刷题
下载APP
【简答题】

写出程序运行结果class Exc0 extends Exception { } class Exc1 extends Exc0 { } class Demo { public static void main(String[] args) { try { throw new Exc1(); } catch (Exc1 e) { System.out.println("Exc1"); } catch (Excception e) { System.out.println("Exception"); } } }

题目标签:程序运行
举报
参考答案:
参考解析:
.
刷刷题刷刷变学霸