关注蜜蜂引路,注册平台账号.
Java中的抽象类Reader和Writer所处理的流是【 】。
A、图像流
B、对象流
C、字节流
D、字符流
D
【解析】
Reader/Writer所处理的流是字符流,Inputstream/OutputStream的处理对象是字节流。
在Java中,“目录”被看作是【 】
在Java 中,对象流以____________方法传送和存储。
Java 输入/输出流中包括字节流、____________、文件流、对象流以及管道流。
下列程序的运行结果是 【 】public class test{ private String[] data={“10”,“10.5”}; public void fun(){ double s=0; for(int i=0;i<3;i++){ try{ s=s+Integer.parseInt(data[i]); }catch(Exception e){ System.out.print(“errorl:”+data[i]); } } } public static void main(String[] args){ try{ testd=new test(); d.fun(); }catch(Exception e){ System.out.printIn(“error2”); } } }
下列代码的执行结果是 【 】public class Test { public static void main(String[] args){ int[] x={0,1,2,3}; for(int i=0;i<3;i+=2){ try{ System.out.println(x[i+2]/x[i]+x[i+1]); }catch(ArithmeticException e){ System.out.println("error1"); }catch(Exception e){ System.out.println("error2"); } } } }
在oneMethod()方法运行正常的情况下,程序段将输出什么? public void test(){ try{ oneMethod(); System.out.println("condition 1"); }catch(ArrayIndexOutOfBoundsException e){ System.out.println("condition 2"); }catch(Exception e){ System.out.println("condition 3"); }finally{ System.out.println("finally"); } }
Java的类库中提供Throwable类来描述异常,它有Error和 __________ 两个直接子类。
下列常见的系统定义的异常中,哪个是输入/输出异常【 】
Java语言对简单数据类型进行了类包装,int对应的包装类是__________。
下列叙述中,错误的是【 】
java.io包的File类是【 】
在程序读入字符文件时,能够以该文件作为直接参数的类是【 】
下列不是InputStream子类的是【 】
在读字符文件Employee.dat时,使用该文件作为参数的类是【 】
在对象流中,对象的传送首先要将所传送的对象串行化,也就是实现Serializable接口。以下代码中必须要实现Serializable接口的类是__________。ObjectInput in=new ObjectInputStream(new FileInputStream("employee. dat"));Employee[] newStaff=(Employee[])in. readObject();
键盘键入字符串并在计算机屏幕上显示,这时的数据源是__________。
接口中,除了抽象方法之外,还可以含有【 】
下列关于内部类的说法不正确的是【 】
下列关于继承的哪项叙述是正确的【 】
下列描述中,正确的是【 】
若数组a定义为int[][]a=new int[3][4],则a是【 】
下列命题中,错误的是【 】
在Java中,与数据库连接的技术是【 】
Thread类中能运行线程体的方法是【 】
以下程序代码的输出结果是【 】int x=73;System.out.println(x>>1);
线程生命周期中正确的状态是【 】