下面程序的运行结果是()publicclassDemo{publicstaticvoidmain(String[]args){try{System.out.println(10/0);System.out.println("除法正常运行");}catch(ArithmeticExceptione){System.out.println("除数不能为0");}}}
A. 编译失败
B. 编译通过,没有结果输出
C. 输出:除法正常运行
D. 输出:除数不能为0
classMyExceptionextends(1){}publicclassDemo{publicstaticvoidmain(String[]args){try{show();}catch((2)e){e.printStackTrace();}}publicstaticvoidshow()(3)MyException{thrownewMyException();}以上程序,创建了一个自定义异常(编译异常),请补全空白处代码()
A. (1)Exception(2)MyException(3)throws
B. (1)MyException(2)Exception(3)throws
C. (1)Exception(2)Exception(3)throws
D. (1)Exception(2)MyException(3)Exception
下列程序运行结果是()publicclassDemo{publicstaticvoidmain(String[]args){Objectobj=newFather(){publicvoidshow(){System.out.println("helloworld");}};obj.show();}}classFather{publicvoidshow(){System.out.println("hellofather");}}
A. hellofather
B. helloworld
C. 无结果
D. 程序编译报错
在模拟物流快递系统程序设计中,将交通工具类定义成一个抽象类,类中需要包含该交通工具的编号,型号以及运货负责人等属性。
A. 对
B. 错