欢迎来到天天文库
浏览记录
ID:42446346
大小:121.00 KB
页数:19页
时间:2019-09-15
《java考题汇总》由会员上传分享,免费在线阅读,更多相关内容在教育资源-天天文库。
1、Java基础测试(115分)(25)英语名词解释:-3Abstractclass抽象类Abstractmethod抽象方法Accessmodifier访问权限修饰符Anonymousclass匿名类Anonymousinnerclasses匿名内部类Baseclass基类Innerclasses内部类Privatemembers私有成员Publicmembers公有成员Runtimeexceptions运行时异常Staticinnerclasses静态内部类Staticmethods静态方法St
2、aticvariable静态变量Superclass超类、父类Synchronizedmethods同步方法、加锁方法Thread多线程Time-slicingConstructor构造器、构造方法Containers容器Declaration声明Derivedclass启动类EncapsulationEventclasses事件类Eventsources事件源Localvariable本地方法Exception异常(65)选择题:23-151.欲构造ArrayList类的一个实例,此类继承了L
3、ist接口,下列哪个方法是正确的?BA、ArrayListmyList=newObject();B、ListmyList=newArrayList();C、ArrayListmyList=newList();D、ListmyList=newList();2.指出正确的表达式CA、byte=128;B、Boolean=null;C、longl=0xfffL;D、double=0.9239d;3.指出下列程序运行的结果DpublicclassExample{Stringstr=newString("
4、good");char[]ch={'a','b','c'};publicstaticvoidmain(Stringargs[]){Exampleex=newExample();ex.change(ex.str,ex.ch);System.out.print(ex.str+"and");System.out.print(ex.ch);}publicvoidchange(Stringstr,charch[]){str="testok";ch[0]='g';}}A、goodandabcB、goodan
5、dgbcC、testokandabcD、testokandgbc4.运行下列程序,会产生什么结果DpublicclassXextendsThreadimplementsRunnable{publicvoidrun(){System.out.println("thisisrun()");}publicstaticvoidmain(Stringargs[]){Threadt=newThread(newX());t.start();}}A、第一行会产生编译错误B、第六行会产生编译错误C、第六行会产生运
6、行错误D、程序会运行和启动5.要从文件"file.dat"文件中读出第10个字节到变量C中,下列哪个方法适合?AA、FileInputStreamin=newFileInputStream("file.dat");in.skip(9);intc=in.read();B、FileInputStreamin=newFileInputStream("file.dat");in.skip(10);intc=in.read();C、FileInputStreamin=newFileInputStream(
7、"file.dat");intc=in.read();D、RandomAccessFilein=newRandomAccessFile("file.dat");in.skip(9);intc=in.readByte();6.容器被重新设置大小后,哪种布局管理器的容器中的组件大小不随容器大小的变化而改变?BA、CardLayoutB、FlowLayoutC、BorderLayoutD、GridLayout7.给出下面代码:publicclassPerson{staticintarr[]=newin
8、t[10];publicstaticvoidmain(Stringa[]){System.out.println(arr[1]);}}哪个语句是正确的?CA、编译时将产生错误;B、编译时正确,运行时将产生错误;C、输出零;D、输出空。8.下列哪些语句关于内存回收的说明是正确的?BA、程序员必须创建一个线程来释放内存;B、内存回收程序负责释放无用内存C、内存回收程序允许程序员直接释放内存D、内存回收程序可以在指定的时间释放内存对象9.下列代码哪几行会出错:C1)publicvoidmodify()
此文档下载收益归作者所有