A.數(shù)組是一種對(duì)象
B.數(shù)組屬于一種原生類
C.int number=[]={31,23,33,43,35,63}
D.數(shù)組的大小可以任意改變
您可能感興趣的試卷
你可能感興趣的試題
A.String a[]=new String[5];for(int i=0;i<5;a[i++]=“”);
B.String a[]={“”,“”,“”,“”,“”};
C.String a[5];
D.String[5]a;
E.String[]a=new String[5];for(int i=0;i<5;a[i++]=null);
A.short
B.Boolean
C.Double
D.float
A.int a[ ][ ] = new int[][];
B.int a[10][10] = new int[][];
C.int a[ ][ ] = new int[10][10];
D.int [ ][ ]a = new int[10][10];
E.int [ ]a[ ] = new int[10][10];
A. void methoda();
B. public double methoda();
C. public final double methoda();
D. static void methoda(double d1);
E. protected void methoda(double d1);
A.Session
B.application
C.pageContext
D.cookie
最新試題
Model是一個(gè)接口,ModelMap是一個(gè)接口實(shí)現(xiàn),作用是將model數(shù)據(jù)填充到()域。
@RequestMapping注解的默認(rèn)屬性是()。
當(dāng)客戶端form表單的enctype屬性為()時(shí),瀏覽器就會(huì)采用二進(jìn)制流的方式來處理表單數(shù)據(jù),服務(wù)器端就會(huì)對(duì)文件上傳的請(qǐng)求進(jìn)行解析處理。
組合注解()匹配PUT方式的請(qǐng)求。
自定義數(shù)據(jù)綁定可以采用Converter或Formatter,兩者的區(qū)別下列說法正確的是()。
SpringMVC數(shù)據(jù)綁定的過程中,ServletRequest接收受的信息直接給()。
在批量刪除用戶的操作中,前端請(qǐng)求傳遞的都是()的用戶id,只要在后臺(tái)使用同一種數(shù)組類型的參數(shù)綁定接收,就可以在方法中通過循環(huán)數(shù)組參數(shù)的方式來完成刪除操作。
ViewResolver解析后,會(huì)向()中返回具體的View(視圖)。
文件上傳時(shí),form表單的method屬性設(shè)置為()。
配置視圖解析器(ViewResolver)時(shí),<property name="prefix"value="/WEB-INF/jsp/"/>是設(shè)置視圖的()屬性。