首页题库练习题目详情
Java语言程序设计单选题中等

Java中,下列哪组代码能够正确捕获异常?

Atry{...} catch(Exception e){...}
Btry{...} catch(Runnable e){...}
Ctry{...} catch(NonException e){...}
Dtry{...} catch(Exception e) {...} finally{...}