1下面的程序 编译运行后,在屏幕上显示的结果是(0)
public class test { public static void main(String args[]) { int x,y; x=5>>2; y=x>>>2; System.out.println(y); } }解析: >>是带符号右移; >>>是无符号右移,即无论是正数还是负数,高位通通补0 5的二进制0101右移两位变为0001,再右移两位变为0000
2以下代码结果是什么?代码可以编译运行,输出“AB.B”
public class foo { public static void main(String sgf[]) { StringBuffer a=new StringBuffer(“A”); StringBuffer b=new StringBuffer(“B”); operate(a,b); System.out.println(a+”.”+b); } static void operate(StringBuffer x,StringBuffer y) { x.append(y); y=x; } }解析: x.append(y)——x:AB y=x——改变y的指向,但不能改变b的值
3在JAVA中,假设A有构造方法A(int a),则在类A的其他构造方法中调用该构造方法和语句格式应该为(this(x)) A this.A(x) B this(x) C super(x) D A(x)
解析: A选项是调用普通方法的格式 C选项为调用父类构造方法的格式 D选项为调用静态方法的格式
4.下面代码的运行结果是(由于String s没有初始化,代码不能编译通过。)
public static void main(String[] args){ String s; System.out.println("s="+s); }5.装箱、拆箱操作发生在: (引用类型与值类型之间)
6. java语言的下面几种数组复制方法中,哪个效率最高?
A for 循环逐一复制 B System.arraycopy C Array.copyOf D 使用clone方法
解析:System.arraycopy > clone > Arrays.copyOf > for循环
7.下列哪个说法是正确的(D)
A ConcurrentHashMap使用synchronized关键字保证线程安全 B HashMap实现了Collction接口 —— Vector实现了Collection C Array.asList方法返回java.util.ArrayList对象 D SimpleDateFormat是线程不安全的
8.下列代码执行结果为(21)
public static void main(String args[])throws InterruptedException{ Thread t=new Thread(new Runnable() { public void run() { try { Thread.sleep(2000); } catch (InterruptedException e) { throw new RuntimeException(e); } System.out.print("2"); } }); t.start(); t.join(); System.out.print("1"); }9.以下程序运行的结果是(good and gbc)
public class Example{ String str=new String("good"); char[]ch={'a','b','c'}; public static void main(String args[]){ Example ex=new Example(); ex.change(ex.str,ex.ch); System.out.print(ex.str+" and "); System.out.print(ex.ch); } public void change(String str,char ch[]){ //引用类型变量,传递的是地址,属于引用传递。 str="test ok"; ch[0]='g'; } }