位置:首页 > 题库频道 > 其它分类 > 计算机其它 > 二级二级JAVA2009年9月全国计算机等级考试二级笔试试卷Java语言程序设计

Class类的对象由______自动生成,隐藏在.class文件中,它在运行时为用户提供信息。

发布时间:2024-07-09

A.Java编译器

B.Java解释器

C.Java new 关键字

D.Java类分解器

试卷相关题目

  • 1在下列程序的空白处,应填入的正确选项是Import jav

    A.io.*;Pulilc class ObjectStreamTest{Publilc static void main(string args[]) throws IOException{ObjectOutputStream oos= new ObjectOutputStream(new FileOutputStream(“serial.bin”));Java.util.Date d= new Java.util.Date();Oos (d);ObjectInputStream ois=new ObjectInputStream(new FileOutputStream(“serial.bin”));try{java.util.date restoredDate =(Java.util.Date) ois.readObject();System.out.println(“read object back from serial.bin file:”+ restoredDate);}Catch (ClassNotFoundException cnf) {System.out.println (“class not found”);}}A.Object

    B.Writer

    C.BufferedWriter

    D.WriterObject

    开始考试点击查看答案
  • 2Java中类ObjectOutputStream支持对象的写操作,这是一种字节流,它的直接父类是

    A.Writer

    B.DataOutput

    C.OutputStream

    D.ObjectOutput

    开始考试点击查看答案
  • 3在多线程并发程序设计中,能够给对象x加锁的语句是

    A.x.wait( )

    B.synchronized(x)

    C.x.notify( )

    D.x.synchronized( )

    开始考试点击查看答案
  • 4构造方法名必须与______相同,它没有返回值,用户不能直接调用它,只能通过new调用。

    A.类名

    B.对象名

    C.包名

    D.变量名

    开始考试点击查看答案
  • 5下列程序的功能是统计字符串中“array”的个数,在程序的空白处应填入的正确选项是public class FindKeyWords{public static void main(sring[] args){sting text=“ An array is a data structur that stores a collection of”+ “values of the same type . You access each individual value”+ “through an integer index . For example,if a is an array”+ “of inergers, then a[i] is the ith integer in the array.”;Int arrayCount =0;Int idex = -1;Sting arrarStr =”array”;Index = text.indexof(arrayStr);While(index          0) {++arrayCount;Index += arrayStr.length();Index = text.indexof(arrayStr,index);}System.out.println(“the text contains” + arrayCount + “arrays”);}}

    A.<

    B.=

    C.<=

    D.>=

    开始考试点击查看答案
返回顶部