使用捕获异常时,哪些组合使用方式是正确的
A: try{ }catch(){ }
B: try{ }catch(){ }finally{ }
C: try{ }finally{ }
D: try{ }catch(){ }catch(){ }catch(){ }finally{ }
A: try{ }catch(){ }
B: try{ }catch(){ }finally{ }
C: try{ }finally{ }
D: try{ }catch(){ }catch(){ }catch(){ }finally{ }
举一反三
- 下面关于try、catch和finally语句块的组合使用,正确的是() A: try{,} B: try{,}finally{,} C: try{,}catch{,}finally{,} D: try{,}catch{,}catch{,}
- 以下的try~catch语句,哪种是不正确的? A: try{}catch(){}finally{} B: try{}catch(){}catch(){}finally{} C: try{}catch(){} D: try{}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){……}
- 异常的捕获通常由try、catch两部分组成,______代码块用来存放可能发生异常,______代码块用来处理产生的异常。 A: try catch B: try finally C: catch try D: catch finally