c#中用来捕获异常的关键字是()
A: try
B: catch
C: throw
D: finally
A: try
B: catch
C: throw
D: finally
举一反三
- 下列选项中,哪个关键字用来捕获异常?( ) A: try B: catch C: throw D: finally
- 1、java中用来抛出异常的关键字是() A: try B: catch C: throw D: finally
- 抛出异常,使用关键字() A: try B: throw C: finally D: catch
- 下列不是用来捕获处理异常的关键字是()。 A: throws B: try C: catch D: finally
- 在C# 程序中,下列用来处理异常结构,错误的是( )。 A: try{}finally{} B: catch{}finally{} C: try{}catch{}finally{} D: try{}catch{}