《《JAVA语言程序设计》期末考试试题及答案 .docx》由会员分享,可在线阅读,更多相关《《JAVA语言程序设计》期末考试试题及答案 .docx(7页珍藏版)》请在淘文阁 - 分享文档赚钱的网站上搜索。
1、精品名师归纳总结JAVA 语言程序设计期末考试试卷及答案一、挑选题1. 请说出以下代码的执行结果 : String s = abcd。String s1 = new Strings。if s = = s1 System.out.printlnthe same。if s.equalss1 System.out.printlnequals。A. the same equalsB. equalsC. the same D. 什么结果都不输出2. 以下有关 Java中接口的说法哪个是正确的?A. 接口中含有详细方法的实现代码B. 如一个类要实现一个接口,就用到“ implements关”键字C. 如一
2、个类要实现一个接口,就用到 “ extends关键”字D. 接口不答应继承3. 以下代码的执行结果是什么? String s1 = aaa。s1.concatbbb。System.out.printlns1。A. The string aaa.B. The string aaabbb.C. The string bbbaaa.D. The string bbb.4. 假如有一个对象 myListener 其中 myListener 对象实现了 ActionListener 接口 , 以下哪条语句使得 myListener 对象能够接受处理来自于 smallButton 按钮对象的动作大事 .A
3、. smallButton.addmyListener。B. smallButton.addListenermyListener。C. smallButton.addActionListenermyListener。D. smallButton.addItemmyListener。可编辑资料 - - - 欢迎下载精品名师归纳总结二读程序题1.读以下代码,说出这段程序的功能。import java.io.* 。public class Testpublic static void main String argv tryBufferedReader is =new BufferedReader
4、new InputStreamReaderSystem.in。 String inputLine 。WhileinputLine = is.readLine.=null System.out.printlninputLine。is.close。catchIOException eSystem.out.printlnIOException: + e。答案:读取键盘输入,显示到屏幕上,直到键盘输入为空为止。2、读以下程序,写出正确的运行结果。class test public static void mainString args int x=9,y 。ifx=0ifx0y=1。else y=0。
5、else y=-1。System.out.printlny。可编辑资料 - - - 欢迎下载精品名师归纳总结答案: 13、读程序,写出正确的运行结果。public class Fatherint a=100。public void minera-。public static void mainString args Father x = new Father。Son y = new Son。System.out.printlny.a。System.out.println y.getA。y.miner。System.out.printlny.a。System.out.printlny.getA。
6、class SonextendsFather int a = 0。public void plus a+。public int getA return super.a。答案:0100可编辑资料 - - - 欢迎下载精品名师归纳总结099三 . 简答题1. Java语言的特点。答:简洁性: Java风格类似于 C+,但它摒弃了 C+中简洁引起程序错误的的方面对对象: Java语言的设计是完全面对对象分布式: 说明执行:健壮性: Java供应自动垃圾回收机制,反常处理机制,进行严格的类型检查平台无关性: 安全性多线程动态性2. 请描述 AWT 大事模型。答:结合AWT 大事模型并举例来说: imp
7、ort java.awt.event.*。1. 监听对象必需实现对应大事监听器的接口class MyFirstFrame extends Frame implements ActionListener.2. 明确大事监听器的接口形式public void actionPerformed ActionEvent event 3. MyFirstFrame 类必需实现接口 ActionListener中的全部方法。4. 注册监听对象 .为了把 MyFirstFrame对象注册为两个按钮的大事监听对象,必需在MyFirstFrame的构造函数中添加语句如下: cancelButton.addActionListenerthis。okButton.addActionListenerthis。可编辑资料 - - - 欢迎下载精品名师归纳总结3. 在 Java中,怎样创建一个线程? 答:1、定义类来实现 Runnable 接口class TestThread implements Runnable public void run 2、继承 Thread类来实现class TestThread extends Thread TestThreadString name supername。 start。public void run 可编辑资料 - - - 欢迎下载
限制150内