getCustomerInfo()方法如下,try中可以捕获三种类型的异常,如果在该方法运行中产生了一个IOException,将会输出什么结果()
A: IOException!
B: IOException!Exception!
C: FileNotFoundException!IOException!
D: FileNotFoundException!IOException!Exception!
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!"); } }
- 有某方法如下,try中可以捕获三种类型的异常,如果在该方法运行中产生了一个IOException,将会输出什么结果?() A: IOException B: Exception C: ExceptionIOException D: FileNotFoundExceptionExceptionIOException
- 以下哪一种是按照异常应该被捕获的顺序排列的() A: Exception、IOException、FileNotFoundException B: FileNotFoundException、Exception、IOException、 C: IOException、FileNotFoundException、Exception D: FileNotFoundException、IOException、Exception
- 下列代码中给出正确的在方法体内抛出异常的是( )。 A: new throw Exception(" "); B: throw new Exception(" "); C: throws IOException(); D: throws IOException;
- 下列系统定义的异常中,( )是输入、输出异常 A: ClassNotFoundException B: IOException C: FileNotFoundException D: UnknownHostException