单项选择(2007年4月二级考试)

下列常见的系统定义的异常中,哪个是输入/输出异常【 】

A、ClassNotFoundException

B、IOException

C、FileNotFoundException

D、UnknownHostException

答案解析

B

【解析】

ClassNotFoundException为未找到欲装载使用的类异常,

FlieNotFoundException为未找到指定的文件或目录异常,

UnknownHostException为无法确定主机的IP地址异常。

下面再举出几种异常:

ArrayIndexOutOfBoundsException为数组越界使用异常;

IOException为输入输出异常;

NullPointerException引用为空异常;

ArithmeticException算术异常。

讨论

Java的类库中提供Throwable类来描述异常,它有Error和 __________ 两个直接子类。

在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");   } }

下列代码的执行结果是 【 】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");             }         }     } }

下列程序的运行结果是 【 】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”);         }     } }

十进制数16的16进制表示格式是【 】

下列不是InputStream子类的是【 】

下列方法中可以用来创建一个新线程的是【 】

下列程序的功能是在监控台上每隔一秒钟显示一个字符串“Hello”,能够填写在程序中下划线位置,使程序完整并能正确运行的语句是【 】public class Test implements Runnable{    public static void main(String args[]){       Test t=new Test();       Thread tt=new Thread(t);       tt.start();    }    public void run(){       for(;;){          try{}catch(e){}          System.put.println("Hello");       }    } }

Java语言中,负责并发管理的机制是【 】

以下程序代码的输出结果是【 】int x=73;System.out.println(x>>1);