[计算机类试卷]国家二级(JAVA)机试模拟试卷88及答案与解析.doc

上传人:孙刚 文档编号:503625 上传时间:2018-11-29 格式:DOC 页数:8 大小:38.50KB
下载 相关 举报
[计算机类试卷]国家二级(JAVA)机试模拟试卷88及答案与解析.doc_第1页
第1页 / 共8页
[计算机类试卷]国家二级(JAVA)机试模拟试卷88及答案与解析.doc_第2页
第2页 / 共8页
[计算机类试卷]国家二级(JAVA)机试模拟试卷88及答案与解析.doc_第3页
第3页 / 共8页
[计算机类试卷]国家二级(JAVA)机试模拟试卷88及答案与解析.doc_第4页
第4页 / 共8页
[计算机类试卷]国家二级(JAVA)机试模拟试卷88及答案与解析.doc_第5页
第5页 / 共8页
点击查看更多>>
资源描述

1、国家二级( JAVA)机试模拟试卷 88及答案与解析 一、基本操作题( 30分) 1 本程序的功能是,从键盘输入一个整数,存入一个输入流中,然后输出它的两倍值。请将程序补充完整。 注意:请勿修改 main()主方法和其他已有语句内容,仅在横线处填入适当语句。 import java.io.*; public class basic public static void main(String args) File dir=new File(“.“); Filter filter=new Filter(“java“); System.out.println(“list java files in

2、 directory“ +dir); String files=dir.list(filter); /列出目录 dir下,文件后缀名为 java的所有文件 for(_;_;i+) File f=new File(dir,filesi); _ (f.isFile() /如果该对象为后缀为 java的文件,则打印文件名 System.out.println(“file“ +f); else System.out.println(“sub directory“ +f); /如果是目录则打印目录名 class Filter implements FilenameFilter String extent

3、; Filter(String extent) this.extent=extent; public boolean accept(File dir,String name) return name.endswith(“.“+extent);/返回文件的后缀名 二、简单应用题( 40分) 2 请完成程序,首先由一个类 simple实现 Serializable接口,并有三个成员变量,分别为 int型、 double型和 String型,可以用 toString的方法显示这三个成员变量。在 main方法中创建这个 simple的持久对象,根据用户在命令行输入的三个参数来设定其中成员变量的值。然后

4、,将这个对象写入名为 TheSerial.data的文件中, 并显示成员变量。最后从文件 TheSerial.data中读出三个成员变量并显示出来。 注意:请勿修改 main()主方法和其他已有语句内容,仅在横线处填入适当语句。 import java.io.*; class TheSerial implements Serializable private int intvalue; private double doublevalue; private String string; The Serial () intvalue=123; doublevalue=12.34; string=

5、“Serialize Test“; public void setDouble(double d) doublevalue=d; public void setInt(int i) intvalue=i; public void setString(String s) string=s; public String to String() return(“int=“+intvalue+“ double=“+doublevalue+“ string=“+string); public class simple public static void main(String args) The Se

6、rial e1=new TheSerial(); TheSerial e2; try e1.setInt(Integer.parseInt(args0); e1.setDouble(Double.parseDouble(args1); e1.setString(args2); catch(Exception e) e1.setString(e.getMessage(); System.out.println(e1); try FileOutputStream oS=new FileOutputStream(“TheSerial.data“); ObjectOutputStream oOS=ne

7、w ObjectOutputStream(oS); _; catch(IOException ioException) System.out.println (ioException.getMessage (); try FileInputStream iS=new FileInputStream(“TheSerial.data“); ObjectInputStream oIS=new ObjectInputStream(iS); _; System.out.println(e2); catch(IOException ioException) System.out.println(ioExc

8、eption.getMessage(); catch(ClassNotFoundException cnfException) System.out.println(cnfException.getMessage(); 三、综合应用题( 30分) 3 本题程序中实现了一个 “生产者一消费者问题 ”。生产者产生一个随机数存入DataPool类中,消费者从中取出数据。 DataPool类一次只能存放一个数据。请更正题中带下划线的部分。 注意:不改变程序的结构,不得增行或删行。 class DataPool private int data; private boolean isFull; publ

9、ic DataPool() isFull=false; public synchronized void putData(int d) if(isFull= =true) try this.notify(); catch(InterruptedException e) data=d; isFull=true; System.out.println(“生产了一个数据 :“+data); this.notify(); public synchronized int getData() if(isFull= =false) try this.wait(); catch(InterruptedExce

10、ption e) isFull=false; System.out.println(“消费了一个数据 “+data); this.wait(); return this.data; boolean getIsFull() return isFull; class Producer extends Thread DataPool pool; public Producer(DataPool pool) this.pool=pool; public void run() for(int i=0; i 10; i+) int data=(int) (Math.random()*1000); try

11、/用于生产数据 sleep(data); catch(InterruptedException e) pool.putData(data); class Consumer implements Runnable DataPool pool; public Consumer(DataPool pool) this.pool=pool; public void run() for(int i=0; i 10; i+) int data=pool.getData(); try /用于处理数据 sleep(int) (Math.random()*1000); catch(InterruptedExce

12、ption e) public class advance public static void main(String args) Data Pool pool=new Data Pool(); Producer pro=new Producer(pool); Runnable con=new Consumer(pool); Thread conTh=new Thread(con); pro.start(); conTh.start(); 国家二级( JAVA)机试模拟试卷 88答案与解析 一、基本操作题( 30分) 1 【正确答案】 int i=0 i files.length if 【试

13、题解析】 本题考查知识点:程序流程控制。这道题虽然是一道读取文件的题,但是考查的却仍然是最基本的循环语句和条件分支语句。第 1个空定义循环的初始条件。第 2个空定义 循环结束条件,当循环次数大于 files中包含的文件名的个数时,循环完毕。第 3个空考查 if-else语句的使用。 二、简单应用题( 40分) 2 【正确答案】 oOs.writeObject(e1) e2=(TheSerial)oIS.readObject() 【试题解析】 本题考查知识点:串行化要领和目的、串行化方法、基于文本的应用。解题思路:本题主要考查串行化相关的方法和实现。解题中首先要掌握串行化的基本过程和反串行化的过

14、程。串行化过程首先要创建一个FileOutputStream,通过该 类的实例对文件进行访问,然后创建一个ObjectOutputStream对象,通过 writeObject()方法来实现对象的序列化。第 1个空就是使用 writeObject()实现序列化。反序列化过程中用 FileInputStream对象建立读取文件的连接,并使用该对象创建一个 ObjectInputSream实例的readObject()方法就可以实现对象的反序列化。第 2个空就是使用 readObject()实现反序列化。 三、综合应用题( 30分) 3 【正确答案】 this.wait() this.notify

15、() thread.sleep(int)(Math.random()*1000) 【试题解析】 本题考查知识点:多线程同步与互斥、线程的概念和实现方法。解题思路: Data Pool是一个用来存放数据的缓冲池,其中可以存放一个血型数据,变量 isFull作为标志量,标志该缓冲池中是否有数据。 Put Data()方法负责向 Data Pool中存放数据,本方法调用成功,缓冲池中就存入了数据, getData()方法负责从 DataPool中获得数据,本方法调用成功,缓冲池就为空。 Producer类负责产生随机数据,然后将数据存放到 DataPool中。 Consumer类负责才能够从 Dat

16、aPool中取出数据。 Producer和 Consumer共享同一个 Data Pool对象。当某个线程进入synchronized块后,共享的数据并不一定能满足该线程的需要,这样线程就需要等待其他线程修改共享数据,直到满足需要以后才继续执行,但是当前线程必须释放锁以使得其他线程可以运行。 wait()和 notify()方法是实现线程之间通信的两个方法。 wait()用来释放线程拥有的锁,使线程进入等待队列; notify()用来唤醒等待队列中的线程,并把它加入到申请锁的队列。本题中生产者在 DataPool有数据的情况下需要进入等待消费者取出数据,所以需要调用 wait()方法,因此第 1个下划线的地方应该改为 this.wait()。消费者线程在取出数据以后,必须通知生产者线程DataPool中已经没有数据了,因此第 2个下划线的地方改为 this.notify()。第 3个下划线的地方,考查常用的线程类的使用。 Runnable接口的目的是使任何类都可以为线程提供线程体,但它本身并不是线程,所以并不能直接调用 Thread类的方法,需 要改为 thread.sleep。

展开阅读全文
相关资源
猜你喜欢
相关搜索

当前位置:首页 > 考试资料 > 职业资格

copyright@ 2008-2019 麦多课文库(www.mydoc123.com)网站版权所有
备案/许可证编号:苏ICP备17064731号-1