以下的try~catch语句,哪种是不正确的?
A: try{}catch(){}finally{}
B: try{}catch(){}catch(){}finally{}
C: try{}catch(){}
D: try{}finally{}
A: try{}catch(){}finally{}
B: try{}catch(){}catch(){}finally{}
C: try{}catch(){}
D: try{}finally{}
举一反三
- 下面关于try、catch和finally语句块的组合使用,正确的是() A: try{,} B: try{,}finally{,} C: try{,}catch{,}finally{,} D: try{,}catch{,}catch{,}
- 使用捕获异常时,哪些组合使用方式是正确的 A: try{ }catch(){ } B: try{ }catch(){ }finally{ } C: try{ }finally{ } D: try{ }catch(){ }catch(){ }catch(){ }finally{ }
- 以下异常处理结构中,错误的是() A: catch{} finally{} B: try{} finally{} C: try{} catch{} finally{} D: try{} catch{}
- Java中,下面捕获异常的语句不正确的是( )。 A: try{……}finally{……} B: try{……}catch(Exception ex){……} C: try{ try{……}}catch(Exception ex){……} D: try{ try{……} finally{……}}catch(Exception ex){……}
- 在C#程序中,下列用来处理异常的结构,正确的是( )。 A: catch{ }finally{ } B: try{ }catch{ }finally{ } C: try{ }finally{ } D: try{ }catch{ }