getCustomerInfo()方法如下,try中可以捕获三种类型的异常,如果在该方法运行中产生了一个IOException,将会输出什么结果() A: IOException! B: IOException!Exception! C: FileNotFoundException!IOException! D: FileNotFoundException!IOException!Exception!
getCustomerInfo()方法如下,try中可以捕获三种类型的异常,如果在该方法运行中产生了一个IOException,将会输出什么结果() A: IOException! B: IOException!Exception! C: FileNotFoundException!IOException! D: FileNotFoundException!IOException!Exception!
以下哪一种是按照异常应该被捕获的顺序排列的() 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
methodName()方法将抛出IOException异常,方法正确定义的形式是() A: public<br/>IOException methodName() B: public<br/>void methodName() throw new IOException C: public<br/>void methodName() throw IOException D: public<br/>void methodName() throws IOException
methodName()方法将抛出IOException异常,方法正确定义的形式是() A: public<br/>IOException methodName() B: public<br/>void methodName() throw new IOException C: public<br/>void methodName() throw IOException D: public<br/>void methodName() throws IOException
下列( )选项不是InputStream类中的方法。 A: public abstract int read( ) throws IOException B: public final void writeInt (int throws IOException C: public void close( )throws IOException D: public int available( )throws IOException
下列( )选项不是InputStream类中的方法。 A: public abstract int read( ) throws IOException B: public final void writeInt (int throws IOException C: public void close( )throws IOException D: public int available( )throws IOException
有如下代码段:1) A: { if(unsafe()){//do something…} B: else if(safe()){//do the other…} C: } 其中,方法unsafe() 将抛出IOException, 请问可将以下哪项填入第1行。 D: public IOException methodName() E: public void methodName() F: public void methodName() throw IOException G: public void methodName() throws IOException
有如下代码段:1) A: { if(unsafe()){//do something…} B: else if(safe()){//do the other…} C: } 其中,方法unsafe() 将抛出IOException, 请问可将以下哪项填入第1行。 D: public IOException methodName() E: public void methodName() F: public void methodName() throw IOException G: public void methodName() throws IOException
使用流一般都要考虑IOException
使用流一般都要考虑IOException
IOException必须被捕获或抛出。( )
IOException必须被捕获或抛出。( )
请说出下列程序的输出结果_____________,_____________。import java.io.IOException;public class E {public static void main(String args[]){try { methodA();}catch(IOException e){System.out.print("你好");return;}finally {System.out.println("thanks");}}public static void methodA() throws IOException{throw new IOException();}}
请说出下列程序的输出结果_____________,_____________。import java.io.IOException;public class E {public static void main(String args[]){try { methodA();}catch(IOException e){System.out.print("你好");return;}finally {System.out.println("thanks");}}public static void methodA() throws IOException{throw new IOException();}}
给出下列程序的输出结果。import java.io.IOException;public class E {public static void main(String args[]){int m =10;try {methodA();m = 100;}catch(IOException e){m = 1000;}System.out.println(m);}public static void methodA() throws IOException{throw new IOException();}}
给出下列程序的输出结果。import java.io.IOException;public class E {public static void main(String args[]){int m =10;try {methodA();m = 100;}catch(IOException e){m = 1000;}System.out.println(m);}public static void methodA() throws IOException{throw new IOException();}}
IOException必须被捕获或抛出。( ) A: 错 B: 对
IOException必须被捕获或抛出。( ) A: 错 B: 对