public class
{
public static void main(String args[ ] )
{
double d = 12.3; Decrementer dec = new Decrementer( ); dec.decrement(d); System.out.println(d);
}
class Decrementer { public void decrement(double decMe){
decMe = decMe – 1.0;
}
}
}
代码执行后输出的结果是 ()。
ObjectOutputStream out = new ObjectOutputStream(bout);
out.writeObject(this);out.close( );
以上代码段的作用是 () 。
abstract class Person
{
public Person(String n){
name = n;
}
public __________ String getDescription( );
public String getName( ){
return name;
}
private String name;
}
在下画线处应填入的修饰符是() 。
public class Jixiangwu{
public static void main(String[ ] args){
String[ ] stars = {“贝贝”, “晶晶”, “欢欢”, “迎迎”, “妮妮”};
System.out.println(“你抽取的奥运吉祥物是” + ““”
+ stars[(int)(stars. __________ * Math.random( ))] + “”” + “!”;
}
}
为保证程序能正确执行,程序中下画线处应填写的是 ()。
public class Test {
public static void main(String args[ ] ) {
System.out.println((2<0) ? 10:8);
} }
其运行结果是() 。
public class Arrays {
public static void main(String[ ] args) {
int[ ] a = new int[5];
for (int i = 0; i<a.length; i++){
a[i]=10+i;
}
for (int i = 0; i<a.length; i++){
System.out.println(a[i]);
}
String[ ] s = {“Frank”, “Bob”, “Jim”};
for(int i = 0; i<s.length; i = i + 1){
System.out.println(s[i]);
}
s[2] = “Mike”;
System.out.println(s[2]);
} }
代码运行结果正确的是() 。
A.notify( ) B.run( ) C.sleep( ) D.join( )
public class MyStack{
private int idx = 0;
private int[ ] data = new int[8];
public _____________ void push(int i){
data[idx] = i;
idx + +;
}…}
在下画线处应填入的是 ()。
public class Test implements Runnable{
public void run(Thread t) {
System.out.println(“Running.”);
}
public static void main(String[ ] args){
Thread tt = new Thread(new Test( ));
tt.start( );
} }
代码运行结果是 ()。
public class Test {
String s = “One World One Dream”;
public static void main(String args[ ] ){
System.out.println(s);
} }
其运行结果是 ()。
public void writeData(_______________) throws IOException
{ GregorianCalendar calendar = new GregorianCalendar( );
calendar.setTime(hireDay);
out.println(name + “|”
+ salary + “|”
+ calendar.get(Calendar.YEAR) + “|”
+ (calendar.get(Calendar.MONTH) + 1) “|”
+ calendar.get(Calendar.DAY_OF_MONTH));
}
boolean a = false;
boolean b = true;
boolean c = (a&&b)&&(!b);
boolean result = (a&b)&(!b);
执行完后,正确的结果是 ()。
30题 | 被引用899次