Java题库—175道选择题.txt如果我穷得还剩下一碗饭我也会让你先吃饱全天下最好的东西都应该归我所有,包括你!!先说喜欢我能死啊?别闹,听话。有本事你就照顾好自己,不然就老老实实地让我来照顾你!《Java程序设计》理论题库—选择题(单选175题)
1.欲构造ArrayList类的一个实例,此类继承了List接口,下列哪个方法是正确的? B
A、 ArrayList myList=new Object();
B、 List myList=new ArrayList();
C、 ArrayList myList=new List();
java库D、 List myList=new List();
2.paint()方法使用哪种类型的参数? A
A、 Graphics
B、 Graphics2D
C、 String
D、 Color
3.指出正确的表达式 D
A、 byte=128; //byte取值到127
B、 Boolean=null;
C、 long l=0xfffL;
D、 double=0.9239d;
4.指出下列程序运行的结果 B
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 ");
Sytem.out.print(ex.ch);
}
public void change(String str,char ch[]){
str="test ok";
ch[0]='g';
}
}
A、 good and abc
B、 good and gbc
C、test ok and abc
D、 test ok and gbc
5.运行下列程序, 会产生什么结果 C D
public class X extends Thread implements Runable{
public void run(){
System.out.println("this is run()");
}
public static void main(String args[])
{
Thread t=new Thread(new X());
t.start();
}
}
A、第一行会产生编译错误
B、第六行会产生编译错误
C、第六行会产生运行错误
D、程序会运行和启动
6.要从文件" file.dat"文件中读出第10个字节到变量C中,下列哪个方法适合? A
A、FileInputStream in=new FileInputStream("file.dat"); in.skip(9); int ad();
B、FileInputStream in=new FileInputStream("file.dat"); in.skip(10); int ad();
C、 FileInputStream in=new FileInputStream("file.dat"); int ad();
D、RandomAccessFile in=new RandomAccessFile("file.dat"); in.skip(9); int adByte();
7.容器被重新设置大小后,哪种布局管理器的容器中的组件大小不随容器大小的变化而改变? B
A、 CardLayout
B、 FlowLayout
C、 BorderLayout
D、 GridLayout
8.给出下面代码:
public class Person{

版权声明:本站内容均来自互联网,仅供演示用,请勿用于商业和其他非法用途。如果侵犯了您的权益请与我们联系QQ:729038198,我们将在24小时内删除。