黑马程序员技术交流社区

标题: 谁知道结果。。。 [打印本页]

作者: 纸心丶醉月    时间: 2015-9-8 21:25
标题: 谁知道结果。。。
  1. import java.io.*;
  2. public class Mine {
  3.     public static void main(String argv[]){
  4.          Mine m=new Mine();
  5.          System.out.println(m.amethod());
  6.     }
  7.     public int amethod() {
  8.          try {
  9.              FileInputStream dis=
  10. new FileInputStream("Hello.txt");
  11.          }catch (FileNotFoundException fne) {
  12.              System.out.println("No such file found");
  13.              return -1;
  14.          }catch(IOException ioe) {
  15.          } finally{
  16.              System.out.println("Doing finally");
  17.          }
  18.          return 0;
  19.     }
  20. }
复制代码







欢迎光临 黑马程序员技术交流社区 (http://bbs.itheima.com/) 黑马程序员IT技术论坛 X3.2