下列不是用来捕获处理异常的关键字是()。
A: throws
B: try
C: catch
D: finally
A: throws
B: try
C: catch
D: finally
举一反三
- 下列选项中,哪个关键字用来捕获异常?( ) A: try B: catch C: throw D: finally
- 异常的捕获通常由try、catch两部分组成,______代码块用来存放可能发生异常,______代码块用来处理产生的异常。 A: try catch B: try finally C: catch try D: catch finally
- c#中用来捕获异常的关键字是() A: try B: catch C: throw D: finally
- 异常发生后,通常有两种处理方法:1.————————————————,2———————————— A: try catch;throws B: try;catch C: finally;throws D: catch;finally
- Java语言如何进行异常处理,关键字throws,throw,try,catch,finally请举例说明?