Java中用来声明一个方法可能抛出某种异常的关键字是()。
A: throw
B: catch
C: throws
D: finally
A: throw
B: catch
C: throws
D: finally
举一反三
- 关于throw和throws关键字,下列说法正确的是? A: throws是throw的复数形式,用于同时抛出多个异常对象 B: throw关键字用来声明一个方法可能会抛出异常 C: throws关键字用来声明一个方法可能会抛出的异常类型 D: throws用来抛出一个异常对象
- 在方法声明部分表示有异常抛出的关键字是 A: throw B: throws C: catch D: finally
- 在Java异常处理中,程序员要人为地抛出一个异常,需要采用的关键字是() A: throws B: catch C: throw D: finally
- 在方法的声明中,要求该方法必须抛出异常时使用哪个关键字?() A: throw B: catch C: finally D: throws
- 抛出异常应该使用的关键字是() A: catch B: throws C: throw D: finally