您好,欢迎访问三七文档
当前位置:首页 > 高等教育 > 习题/试题 > 《JAVA语言程序设计》期末考试试题及答案7(应考必备题库)
《JAVA语言程序设计》期末考试试题及答案7(应考必备题库)一、选择题1.请说出下列代码的执行结果:Strings=abcd;Strings1=newString(s);if(s==s1)System.out.println(thesame);if(s.equals(s1))System.out.println(equals);A.thesameequalsB.equalsC.thesameD.什么结果都不输出2.下列有关Java中接口的说法哪个是正确的?A.接口中含有具体方法的实现代码B.若一个类要实现一个接口,则用到“implements”关键字C.若一个类要实现一个接口,则用到“extends”关键字D.接口不允许继承3.下列代码的执行结果是什么?Strings1=aaa;s1.concat(bbb);System.out.println(s1);A.Thestringaaa.B.Thestringaaabbb.C.Thestringbbbaaa.D.Thestringbbb.4.如果有一个对象myListener(其中myListener对象实现了ActionListener接口),下列哪条语句使得myListener对象能够接受处理来自于smallButton按钮对象的动作事件?A.smallButton.add(myListener);B.smallButton.addListener(myListener);C.smallButton.addActionListener(myListener);D.smallButton.addItem(myListener);二.读程序题1.读下列代码,说出这段程序的功能。importjava.io.*;publicclassTest{publicstaticvoidmain(String[]argv){try{BufferedReaderis=newBufferedReader(newInputStreamReader(System.in));StringinputLine;While((inputLine=is.readLine())!=null){System.out.println(inputLine);}is.close();}catch(IOExceptione){System.out.println(IOException:+e);}}}答案:读取键盘输入,显示到屏幕上,直到键盘输入为空为止。2、读下列程序,写出正确的运行结果。classtest{publicstaticvoidmain(String[]args){intx=9,y;if(x=0)if(x0)y=1;elsey=0;elsey=-1;System.out.println(y);}}答案:13、读程序,写出正确的运行结果。publicclassFather{inta=100;publicvoidminer(){a--;}publicstaticvoidmain(String[]args){Fatherx=newFather();Sony=newSon();System.out.println(y.a);System.out.println(y.getA());y.miner();System.out.println(y.a);System.out.println(y.getA());}}classSonextendsFather{inta=0;publicvoidplus(){a++;}publicintgetA(){returnsuper.a;}}答案:0100099三.简答题1.Java语言的特点。答:简单性:Java风格类似于C++,但它摒弃了C++中容易引起程序错误的地方面向对象:Java语言的设计是完全面向对象分布式:解释执行:健壮性:Java提供自动垃圾回收机制,异常处理机制,进行严格的类型检查平台无关性:安全性多线程动态性2.请描述AWT事件模型。答:结合AWT事件模型并举例来说:importjava.awt.event.*;1.监听对象必须实现对应事件监听器的接口classMyFirstFrameextendsFrameimplementsActionListener{...}2.明确事件监听器的接口形式publicvoidactionPerformed(ActionEventevent){…}3.MyFirstFrame类必须实现接口ActionListener中的所有方法。4.注册监听对象.为了把MyFirstFrame对象注册为两个按钮的事件监听对象,必须在MyFirstFrame的构造函数中添加语句如下:cancelButton.addActionListener(this);okButton.addActionListener(this);3.在Java中,怎样创建一个线程?答:1、定义类来实现Runnable接口classTestThreadimplementsRunnable{publicvoidrun(){…}}2、继承Thread类来实现classTestThreadextendsThread{TestThread(Stringname){super(name);start();}publicvoidrun(){…}}
本文标题:《JAVA语言程序设计》期末考试试题及答案7(应考必备题库)
链接地址:https://www.777doc.com/doc-2181586 .html