以下哪一种是按照异常应该被捕获的顺序排列的()
A: Exception、IOException、FileNotFoundException
B: FileNotFoundException、Exception、IOException、
C: IOException、FileNotFoundException、Exception
D: FileNotFoundException、IOException、Exception
A: Exception、IOException、FileNotFoundException
B: FileNotFoundException、Exception、IOException、
C: IOException、FileNotFoundException、Exception
D: FileNotFoundException、IOException、Exception
举一反三
- getCustomerInfo()方法如下,try中可以捕获三种类型的异常,如果在该方法运行中产生了一个IOException,将会输出什么结果() A: IOException! B: IOException!Exception! C: FileNotFoundException!IOException! D: FileNotFoundException!IOException!Exception!
- getCustomerInfo()方法如下,try中可以捕获三种类型的异常,如果在该方法运行中产生了一个IOException,将会输出什么结果 public void getCustomerInfo() { try { // do something that may cause an Exception } catch (java.io.FileNotFoundException ex){ System.out.print("FileNotFoundException!"); } catch (java.io.IOException ex){ System.out.print("IOException!"); } catch (java.lang.Exception ex){ System.out.print("Exception!"); } }
- 下面的异常()为文件没有找到异常。 A: FileNotFoundException B: NullPointerException C: IOException D: ArrayIndexOutOfBoundsException
- 下面的异常()为文件没有找到异常。 A: NullPointerException B: FileNotFoundException C: ArraylndexOutOfBoundsException D: IOException
- 下列系统定义的异常中,( )是输入、输出异常 A: ClassNotFoundException B: IOException C: FileNotFoundException D: UnknownHostException