【单选题】//省略源代码try{ FileInputStream in = new FileInputStream("lianxi.txt")int a;while((a=in.read())!=-1) {System.out.print((char)a);} in.close(); } catch(IOException ioe){System.out.println("输入输出错误!"); }//省略源...
【单选题】在try-catch语句中,不能被省略的子句是( )。
【单选题】在 try-catch语句中,不能被省略的子句是( )。
【单选题】going to have a try 以下哪个选项的省略是正确的。
【简答题】It is too late for another try. (it的省略)
【单选题】//省略源代码try{ FileReader in = new FileReader("lianxi.txt");int a;while((a=in.read())!=-1) {System.out.print((char)a);} in.close(); } catch(IOException ioe){System.out.println("输入输出错误!"); }//省略源代码在上述源代码中...
【单选题】//省略源代码try{ FileInputStream in = new FileInputStream("lianxi.txt");int a;while((a=in.read())!=-1) {System.out.print((char)a);} in.close(); } catch(IOException ioe){System.out.println("输入输出错误!"); }//省略...