爪哇 Java基础 2021-08-26 类 Example A 继承 Exception,类 ExampleB 继承 Example A 有如下代码片断: try{ throw new ExampleB(“b”); }catch(ExampleA e){ System.out.printfln(“ExampleA”); }catch(Exception e){ System.out.printfln(“Exception”); } 输出的内容应该是: A:ExampleA B:Exception C:b D:无 答:输出为 A。