新鲜出炉的……好吧……只是我下午刚刚笔试了一个公司,朋友把试卷拍下来了,我就来炒一下冷饭……
一、单选
1、欲构造ArrayList类的一个实例,此类继承了List接口,下列那个方法是正确的?
A.ArrayList myList=new Obiect();
B.List myList=new ArrayList();
C.ArrayList myList=new List ();
D.List myList=new List();
【B】
2、paint()方法使用哪种类型的参数?
A Graphics
B Graphics2D
C String
D Color
【A】
3、指出正确的表达式
A byte=128;
B Boolean=null;
C long l=0xfffL;
D double=0.9239d;
【C】
4、指出下列程序运行结果
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[