try-catch-finally语句中()处理异常情况?
A: try
B: catch
C: finally
D: throw
A: try
B: catch
C: finally
D: throw
举一反三
- try-catch-finally语句中()释放资源? A: try B: catch C: finally D: throw
- try-catch-finally语句中()获取并使用资源? A: try B: catch C: finally D: throw
- 以下异常处理结构中,错误的是() A: catch{} finally{} B: try{} finally{} C: try{} catch{} finally{} D: try{} catch{}
- 以下的try~catch语句,哪种是不正确的? A: try{}catch(){}finally{} B: try{}catch(){}catch(){}finally{} C: try{}catch(){} D: try{}finally{}
- 异常处理包括4个关键字:try、catch、throw和finally。