多选题下面哪些类可用于throw语句()AErrorBExceptionCEventDThrowable
多选题
下面哪些类可用于throw语句()
A
Error
B
Exception
C
Event
D
Throwable
参考解析
解析:
暂无解析
相关考题:
下面关于break语句的描述中,不正确的是A.break可以用于循环体内B.break语句可以在for循环语句中出现多次C.break语句可以在switch语句中出现多次D.break语句可用于if条件判断语句内
使用VC++6.0打开考生文件夹下的源程序文件1.cpp,该程序运行时有错误,请改正错误,使程序正常运行,并且要求最后一个catch必须抛出执行的任何异常。程序异常,输出信息为errorOERROR注意:不要改动main函数,不能增加或删除行,也不能更改程序的结构,错误的语句在//******error******的下面。试题程序:includeiostream.h)intmain{try{throw(error);}//********error********catch(chars){coutsendl;}try{throw((int)0);}//********error********catch{coutiendl;}try{throw(O);throw(error);}//********error********catch{coutERRORendl;}return0;}
在编写异常处理的Java程序中,每个catch语句块都应该与______语句块对应,使得该语句块用来启动Java的异常处理机制。 ( )A.if—elseB.switchC.tryD.throw
Java程序中读入用户输入的一个值,要求创建一个自定义的异常,如果输入值大于10,使用throw语句显式地引发异常,异常输出信息为“something’swrong!”,语句为()。A.if(I>10)throw Exception(“something’swrong!”);B.if(I>10)throw Exceptione(“something’swrong!”);C.if(I>10)thrownew Exception(“something’swrong!”);D.if(I>10)thrownew Exceptione(“something’swrong!”);
程序读入用户输入的一个值,要求创建一个自定义的异常,如果输入值大于10,使用throw语句显式地引发异常,异常输出信息为“something’s wrong!”, 语句为()。 A、if ( i 10 ) throw Exception(“something’s wrong!”);B、if ( i 10 ) throw Exception e (“something’s wrong!”);C、if ( i 10 ) throw new Exception(“something’s wrong!”);D、if ( i 10 ) throw new Exception e ("something’s wrong!");
下面是几条定义类的语句,只能被继承的类是()A、classstudentB、publicclassstudentC、abstractclassstudentD、sealedclassstudent
假设有自定义异常类ServiceException,那么抛出该异常的语句正确的是哪项?() A、 raise ServiceExceptionB、 throw new ServiceException()C、 throw ServiceExceptionD、 throws ServiceException
单选题程序读入用户输入的一个值,要求创建一个异常,如果输入值大于10,使用throw语句显示地引发异常,异常输出的信息为“something‟s wrong!”,语句为()Aif(i10) throw Exception (“something‟s wrong!”);Bif(i10) throw Exception e (“something‟s wrong!”);Cif(i10) throw new Exception (“something‟s wrong!”);Dif(i10) throw new Exception e (“something‟s wrong!”);
单选题假设有自定义异常类ServiceException,那么抛出该异常的语句正确的是哪项?()A raise ServiceExceptionB throw new ServiceException()C throw ServiceExceptionD throws ServiceException
单选题下面是几条定义类的语句,只能被继承的类是()AclassstudentBpublicclassstudentCabstractclassstudentDsealedclassstudent
单选题数据结构与算法里,break语句是调整语句可英语与下面那些语句中。()Awhile语句Bif语句Cif-else语句Dif-else-if语句