A、程序员必须创建一个线程来释放内存 B、内存回收程序负责释放无用内存 C、内存回收程序允许程序员直接释放内存 D、内存回收程序可以在指定的时间释放内存对象 10.以下哪个关键字可以用来对对象加互斥锁?( )
A、transient static
11.以下代码段执行后的输出结果为( )
int x =-3; int y =-10; System.out.println(y%x);
-1
B、2
C、1
D、3
A、
B、synchronized
C、 serialize
D
、
12.有以下程序片段,下列哪个选项不能插入到行1。( )
1.
2 .public class Interesting{ 3. //do sth 4.}
A、import java.awt.*; C、class OtherClass{ } 13. 设有下面两个赋值语句:
a = Integer.parseInt(“12”);
b = Integer.valueOf(“12”).intValue(); 下述说法正确的是( )。 A、a是整数类型变量,b是整数类对象。 B、a是整数类对象,b是整数类型变量。 C、a和b都是整数类对象并且值相等。 D、a和b都是整数类型变量并且值相等。
14.FilterOutputStream是BufferedOutputStream、DataOutputStream及PrintStream的父类,以下哪个类可能是FilterOutputStream构造函数的参数类型? A、OutputStream C、InputStream
B、File
B、package mypackage; D、public class MyClass{ }
D、BufferedOutputStream
15.在编写Java Applet程序时,需在程序的开头写上( )语句。
A、import java.awt.* ; C、import java.io.* ; 16.类Parent、Child定义如下:
1.
public class Parent
2.{ public float aFun(float a, float b) throws 3. IOException { } 4.}
5.public class Child extends Parent{ 6. 7.}
将以下哪种方法插入行6是不合法的。( ) A、float aFun(float a, float b){ }
B、public int aFun(int a, int b)throws Exception{ } C、public float aFun(float p, float q){ }
D、public int aFun(int a, int b)throws IOException{ }
17.在使用interface声明一个接口时,只可以使用( )修饰符修饰该接口。
A、private
B、protected
C、private protected
D、public
B、import java.applet.Applet ; D、import java.awt.Graphics ;
18、有以下方法的定义,请选择该方法的返回类型( )。
ReturnType method(byte x, double y) { }
B、short
C、int
D、double
return (short) x/y*2;
A、byte
19、关于以下代码段的说法正确的是( )
1.String s=\
2.StringBuffer s1=new StringBuffer(\3.if(s.equals(s1)) 4. s1=null; 5.if(s1.equals(s)) 6. s=null;
A、第1行编译错误,String的构造器必须明确调用
B、第3行编译错误,因为s与s1有不同的类型 C、编译成功,但执行时在第5行有异常抛出 D、编译成功,过程中也没有异常抛出
20、编译并运行以下程序,以下描述哪个选项是正确的( )
1. class X{
2. protectied String toString( )i{ 3. 4. }
A、编译通过运行无异常 C、行2出错,不能成功编译 三.程序阅读题
1.以下程序的输出结果为 相等 。
class StringTest1 { }
2.以下程序段的输出结果为 5 6 7 8 9 。
public class TestArray {
public static void main(String args[ ]){
int i , j ;
int a[ ] = { 5,9,6,8,7};
public static void main(String[] args) { }
String s1=\
String s2=new String(\if(s1.equals(s2)){ }
System.out.println(\相等\System.out.println(\不相等\}else{
B、编译通过但运行时出错 D、不能成功编译,行3出错
return super.toString();}
for ( i = 0 ; i < a.length-1; i ++ ) {
int k = i;
for ( j = i ; j < a.length ; j++ )