A.Integer
B.Double
C.Float
D.Character
您可能感興趣的試卷
你可能感興趣的試題
A.123456
B.579
C.編譯錯誤
D.運行時拋出異常
A.a=1;
B.C=a+b;
C.a+=2;
D.shorta,b,C;
現(xiàn)有:
1. class Wrench f
2.public static void main(String [] args) {
3.Wrench w=new Wrench(); Wrench w2=new Wrench();
4. w2=go (w, w2);
5.System.out.print (w2==w);
6. }
7.static Wrench go (Wrench wrl, Wrench wr2) {
8.Wrench wr3=wrl; wrl=wr2; wr2=wr3;
9. return wr3;
10. }
11. }
結(jié)果是什么?()
A.false
B.true
C.編譯失敗
D.運行的時候有異常拋出
現(xiàn)有:
1.class Passer f
2.static final int X=5;
3.public static void main (String [] args) {
4.new Passer().go (x);
5.System. out .print (x);
6. )
7.void go (int x) {
8.System. out .print(x++);
9.}
10.}結(jié)果是什么?()
A.55
B.56
C.65
D.66
現(xiàn)有如下五個聲明:
Linel: int a_really_really_really_long_variable_name=5
Line2: int _hi=6;
Line3: int big=Integer. getlnteger("7”);
Line4:int $dollars=8;
line5: int %opercent=9;
哪行無法通過編譯?()
A.Line1
B.Line3
C.Line4
D.Line5
最新試題
MultipartFile接口的()方法用來判斷上傳的文件是否為空。
RESTful風(fēng)格在HTTP請求中,使用()表示添加操作。
配置前端控制器時<load-on-startup>1</load-on-startup>表示()。
<mvc:interceptors>元素用于配置一組攔截器,其子元素<bean>中定義的是()。
將請求消息數(shù)據(jù)與后臺方法參數(shù)建立連接的過程就是SpringMVC中的()。
下列是正確的JSON對象結(jié)構(gòu)數(shù)據(jù)的是()。
可以在()文件中進行前端控制器的配置。
配置視圖解析器(ViewResolver)時,<property name="prefix"value="/WEB-INF/jsp/"/>是設(shè)置視圖的()屬性。
SpringMVC處理方法的返回類型()主要在異步請求時使用,它只返回數(shù)據(jù),而不會跳轉(zhuǎn)視圖。
調(diào)用()組件對已經(jīng)綁定了請求消息數(shù)據(jù)的參數(shù)對象進行數(shù)據(jù)合法性校驗。