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.運(yùn)行的時(shí)候有異常拋出
現(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)有如下五個(gè)聲明:
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;
哪行無(wú)法通過(guò)編譯?()
A.Line1
B.Line3
C.Line4
D.Line5
A.goto
B.sizeof
C.instanceof
D.volatile
A.userName
B.2test
C.$change
D._password
最新試題
下列文件可能是SpringMVC的配置文件的是()。
簡(jiǎn)單來(lái)說(shuō),RESTful風(fēng)格就是把請(qǐng)求參數(shù)變成()的一種風(fēng)格。
文件解析器類(lèi)CommonsMultipartResolver的()屬性表示上傳文件的最大長(zhǎng)度。
自定義數(shù)據(jù)綁定可以采用Converter或Formatter,兩者的區(qū)別下列說(shuō)法正確的是()。
在SpringMVC中,不采用注解,設(shè)計(jì)控制器類(lèi)需要實(shí)現(xiàn)()。
ModelAndView對(duì)象的()方法向模型對(duì)象中添加數(shù)據(jù)。
下列示攔截器,主要用于攔截用戶請(qǐng)求并做相應(yīng)的處理的是()。
當(dāng)客戶端form表單的enctype屬性為()時(shí),瀏覽器就會(huì)采用二進(jìn)制流的方式來(lái)處理表單數(shù)據(jù),服務(wù)器端就會(huì)對(duì)文件上傳的請(qǐng)求進(jìn)行解析處理。
將請(qǐng)求消息數(shù)據(jù)與后臺(tái)方法參數(shù)建立連接的過(guò)程就是SpringMVC中的()。
DispatcherServlet的全名是org.springframework.web.servlet.DispatcherServlet,它在程序中充當(dāng)著()的角色。