A股上市公司传智教育(股票代码 003032)旗下技术交流社区北京昌平校区

 找回密码
 加入黑马

QQ登录

只需一步,快速开始

© leaf168 中级黑马   /  2015-10-11 23:33  /  320 人查看  /  1 人回复  /   0 人收藏 转载请遵从CC协议 禁止商业使用本文

29.        如果在当前目录下不存在Hello.txt 文件,试图编译和运行下面代码会输出什么C
import java.io.*;
public class Mine {
    public static void main(String argv[]){
         Mine m=new Mine();
         System.out.println(m.amethod());
    }
    public int amethod() {
         try {
             FileInputStream dis=
new FileInputStream("Hello.txt");
         }catch (FileNotFoundException fne) {
             System.out.println("No such file found");
             return -1;
         }catch(IOException ioe) {
         } finally{
             System.out.println("Doing finally");
         }
         return 0;
    }
}
A. No such file found
B. No such file found ,-1
C. No such file found, Doing finally, -1
D. 0

1 个回复

倒序浏览
会报警告,catch语句无法访问。
回复 使用道具 举报
您需要登录后才可以回帖 登录 | 加入黑马