A.當(dāng)一個(gè)方法聲明一個(gè)異常時(shí),表示該方法一定會(huì)拋出該異常
B.若一個(gè)方法可能拋出系統(tǒng)異常,那么這個(gè)方法可以不聲明異常
C.在catch子句中匹配異常一定是一種精確匹配
D.一旦出現(xiàn)異常,程序運(yùn)行就會(huì)終止
您可能感興趣的試卷
你可能感興趣的試題
A.int []a[]=new int[10][10];
B.int a[][]=new int[][];
C.int [][]a=new int[10][10];
D.int a[][]=new int[10][10];
A.byte
B.double
C.boolean
D.string
A.document.getElementById("divResult").color=red;
B.document.getElementById("divResult").style.color=#10011;
C.document.getElementById("divResult").color=“red”;
D.document.getElementById("divResult").style.color=“red“;
A.POST
B.GET
C.PUT
D.以上都是
A.select*from table where id in(1001 1002)
B.select*from product swhere id between 1001 and 1004
C.select*from table where id not in(1004 1005)
D.select*from table where id=1001 and vend_id=1002
![](https://static.ppkao.com/ppmg/img/appqrcode.png)
最新試題
ModelAndView對(duì)象的()方法向模型對(duì)象中添加數(shù)據(jù)。
在批量刪除用戶的操作中,前端請(qǐng)求傳遞的都是()的用戶id,只要在后臺(tái)使用同一種數(shù)組類型的參數(shù)綁定接收,就可以在方法中通過循環(huán)數(shù)組參數(shù)的方式來完成刪除操作。
org.springframeword.web.filter.CharacterEncodingFilter可以用來解決()問題。
SpringMVC數(shù)據(jù)綁定的過程中,ServletRequest接收受的信息直接給()。
下列數(shù)據(jù)是合法的JSON數(shù)據(jù)的是()。
將請(qǐng)求消息數(shù)據(jù)與后臺(tái)方法參數(shù)建立連接的過程就是SpringMVC中的()。
調(diào)用()組件對(duì)已經(jīng)綁定了請(qǐng)求消息數(shù)據(jù)的參數(shù)對(duì)象進(jìn)行數(shù)據(jù)合法性校驗(yàn)。
Tomcat、Jetty、JBoss和GlassFish默認(rèn)的Servlet名稱是()。
@Controller注解類型用于指示Spring類的實(shí)例是一個(gè)()。
當(dāng)客戶端form表單的enctype屬性為()時(shí),瀏覽器就會(huì)采用二進(jìn)制流的方式來處理表單數(shù)據(jù),服務(wù)器端就會(huì)對(duì)文件上傳的請(qǐng)求進(jìn)行解析處理。