A.System.load("prop.custom");
B.System.getenv("prop.custom");
C.System.property("prop.custom");
D.System.getProperty("prop.custom");
E.System.getProperties().getProperty("prop.custom");
第1题:
A.System.load("prop.custom");
B.System.getenv("prop.custom");
C.System.property("prop.custom");
D.System.getProperty("prop.custom");
E.System.getProperties().getProperty("prop.custom");
第2题:
A、moved
B、removed
C、awarded
D、given
第3题:
[A] set [B] exact [C] given [D] placed
第4题:
A.
B.
C.
D.
E.
第5题:
Given:
11.//insertcodehere
12.privateNmin,max;
13.publicNgetMin(){returnmin;}
14.publicNgetMax(){returnmax;}
15.publicvoidadd(Nadded){
16.if(min==null||added.doubleValue()<min.doubleValue())
17.min=added;
18.if(max==null||added.doubleValue()>max.doubleValue())
19.max=added;
20.}
21.}
Whichtwo,insertedatline11,willallowthecodetocompile?()